brintos

brintos / llvm-project-archived public Read only

0
0
Text · 955 B · 1a17cb4 Raw
28 lines · c
1//===- LLVMDialectBytecode.h - LLVM 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 LLVM dialect bytecode10// implementation.11//12//===----------------------------------------------------------------------===//13 14#ifndef LIB_MLIR_DIALECT_LLVM_IR_LLVMDIALECTBYTECODE_H15#define LIB_MLIR_DIALECT_LLVM_IR_LLVMDIALECTBYTECODE_H16 17namespace mlir::LLVM {18class LLVMDialect;19 20namespace detail {21/// Add the interfaces necessary for encoding the LLVM dialect components in22/// bytecode.23void addBytecodeInterface(LLVMDialect *dialect);24} // namespace detail25} // namespace mlir::LLVM26 27#endif // LIB_MLIR_DIALECT_LLVM_IR_LLVMDIALECTBYTECODE_H28