brintos

brintos / llvm-project-archived public Read only

0
0
Text · 848 B · 7f32a3b Raw
27 lines · c
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-exception6//7//===----------------------------------------------------------------------===//8 9#ifndef MLIR_TEST_DIALECT_TEST_TESTOPSSYNTAX_H10#define MLIR_TEST_DIALECT_TEST_TESTOPSSYNTAX_H11 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 19namespace test {20class TestReturnOp;21} // namespace test22 23#define GET_OP_CLASSES24#include "TestOpsSyntax.h.inc"25 26#endif // MLIR_TEST_DIALECT_TEST_TESTOPSSYNTAX_H27