24 lines · c
1//===- TestIRDLToCppDialect.h - MLIR Test Dialect Types -----------------*-===//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// This file includes TestIRDLToCpp dialect headers.10//11//===----------------------------------------------------------------------===//12 13#ifndef MLIR_TEST_LIB_DIALECT_TESTIRDLTOCPP_TESTIRDLTOCPPDIALECT_H14#define MLIR_TEST_LIB_DIALECT_TESTIRDLTOCPP_TESTIRDLTOCPPDIALECT_H15 16#define GEN_DIALECT_DECL_HEADER17#include "test_irdl_to_cpp.irdl.mlir.cpp.inc"18 19namespace test {20void registerConvertTestDialectPass();21}22 23#endif // MLIR_TEST_LIB_DIALECT_TESTIRDLTOCPP_TESTIRDLTOCPPDIALECT_H24