blob: 600dde56d679f2907f3763842f363610e3a8afae (
plain)
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
|
//===----------------------------------------------------------------------===//
//
// 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
//
//===----------------------------------------------------------------------===//
#ifndef CIR_DIALECT_TRANSFORMS_PASSDETAIL_H
#define CIR_DIALECT_TRANSFORMS_PASSDETAIL_H
#include "mlir/IR/Dialect.h"
#include "mlir/Pass/Pass.h"
namespace cir {
class CIRDialect;
} // namespace cir
namespace mlir {
// Forward declaration from Dialect.h
template <typename ConcreteDialect>
void registerDialect(DialectRegistry ®istry);
#define GEN_PASS_CLASSES
#include "clang/CIR/Dialect/Passes.h.inc"
} // namespace mlir
#endif // CIR_DIALECT_TRANSFORMS_PASSDETAIL_H
|