1 //===- BuiltinDialect.h - MLIR Builtin Dialect ------------------*- 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 contains the Builtin dialect that contains all of the attributes, 10 // operations, and types that are necessary for the validity of the IR. 11 // 12 //===----------------------------------------------------------------------===// 13 14 #ifndef MLIR_IR_BUILTINDIALECT_H_ 15 #define MLIR_IR_BUILTINDIALECT_H_ 16 17 #include "mlir/IR/Dialect.h" 18 19 //===----------------------------------------------------------------------===// 20 // Dialect 21 //===----------------------------------------------------------------------===// 22 23 #include "mlir/IR/BuiltinDialect.h.inc" 24 25 #endif // MLIR_IR_BUILTINDIALECT_H_ 26