blob: 7f32a3bae6c5f517d6651ea8fd82d4a41a859a57 (
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
|
//===- TestOpsSyntax.h - Operations for testing syntax ----------*- 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
//
//===----------------------------------------------------------------------===//
#ifndef MLIR_TEST_DIALECT_TEST_TESTOPSSYNTAX_H
#define MLIR_TEST_DIALECT_TEST_TESTOPSSYNTAX_H
#include "TestAttributes.h"
#include "TestTypes.h"
#include "mlir/Bytecode/BytecodeOpInterface.h"
#include "mlir/IR/OpDefinition.h"
#include "mlir/IR/OpImplementation.h"
#include "mlir/Interfaces/InferTypeOpInterface.h"
namespace test {
class TestReturnOp;
} // namespace test
#define GET_OP_CLASSES
#include "TestOpsSyntax.h.inc"
#endif // MLIR_TEST_DIALECT_TEST_TESTOPSSYNTAX_H
|