1 | //===- TestOpsSyntax.h - Operations for testing syntax ----------*- 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 | #ifndef MLIR_TEST_DIALECT_TEST_TESTOPSSYNTAX_H |
10 | #define MLIR_TEST_DIALECT_TEST_TESTOPSSYNTAX_H |
11 | |
12 | #include "TestAttributes.h" |
13 | #include "TestTypes.h" |
14 | #include "mlir/Bytecode/BytecodeOpInterface.h" |
15 | #include "mlir/IR/OpDefinition.h" |
16 | #include "mlir/IR/OpImplementation.h" |
17 | #include "mlir/Interfaces/InferTypeOpInterface.h" |
18 | |
19 | namespace test { |
20 | class TestReturnOp; |
21 | } // namespace test |
22 | |
23 | #define GET_OP_CLASSES |
24 | #include "TestOpsSyntax.h.inc" |
25 | |
26 | #endif // MLIR_TEST_DIALECT_TEST_TESTOPSSYNTAX_H |
27 |