[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / mlir / examples / transform / Ch3 / include / MyExtension.h
blob223638eee1c0365df582e6f7ec853c6ad63cf398
1 //===-- MyExtension.h - Transform dialect tutorial --------------*- c++ -*-===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 //
9 // This file defines Transform dialect extension operations used in the
10 // Chapter 3 of the Transform dialect tutorial.
12 //===----------------------------------------------------------------------===//
14 #include "mlir/Bytecode/BytecodeOpInterface.h"
15 #include "mlir/Dialect/Transform/IR/TransformDialect.h"
16 #include "mlir/Dialect/Transform/IR/TransformInterfaces.h"
18 namespace mlir {
19 class CallOpInterface;
20 namespace func {
21 class CallOp;
22 } // namespace func
23 } // namespace mlir
25 #define GET_TYPEDEF_CLASSES
26 #include "MyExtensionTypes.h.inc"
28 #define GET_OP_CLASSES
29 #include "MyExtension.h.inc"
31 // Registers our Transform dialect extension.
32 void registerMyExtension(::mlir::DialectRegistry &registry);