-
Notifications
You must be signed in to change notification settings - Fork 437
Expand file tree
/
Copy pathSVPasses.h
More file actions
31 lines (24 loc) · 927 Bytes
/
SVPasses.h
File metadata and controls
31 lines (24 loc) · 927 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
//===- SVPasses.h - SV pass entry points ------------------------*- C++ -*-===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
//
// This header file defines prototypes that expose pass constructors.
//
//===----------------------------------------------------------------------===//
#ifndef CIRCT_DIALECT_SV_SVPASSES_H
#define CIRCT_DIALECT_SV_SVPASSES_H
#include "mlir/Pass/Pass.h"
namespace circt {
namespace sv {
#define GEN_PASS_DECL
#include "circt/Dialect/SV/SVPasses.h.inc"
/// Generate the code for registering passes.
#define GEN_PASS_REGISTRATION
#include "circt/Dialect/SV/SVPasses.h.inc"
} // namespace sv
} // namespace circt
#endif // CIRCT_DIALECT_SV_SVPASSES_H