brintos

brintos / llvm-project-archived public Read only

0
0
Text · 954 B · 775e8e0 Raw
27 lines · c
1//===- BuiltinDialectBytecode.h - MLIR Bytecode Implementation --*- 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// This header defines hooks into the builtin dialect bytecode implementation.10//11//===----------------------------------------------------------------------===//12 13#ifndef LIB_MLIR_IR_BUILTINDIALECTBYTECODE_H14#define LIB_MLIR_IR_BUILTINDIALECTBYTECODE_H15 16namespace mlir {17class BuiltinDialect;18 19namespace builtin_dialect_detail {20/// Add the interfaces necessary for encoding the builtin dialect components in21/// bytecode.22void addBytecodeInterface(BuiltinDialect *dialect);23} // namespace builtin_dialect_detail24} // namespace mlir25 26#endif // LIB_MLIR_IR_BUILTINDIALECTBYTECODE_H27