//===-- AVRMCCodeEmitter.h - Convert AVR Code to Machine Code -------------===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// // // This file defines the AVRMCCodeEmitter class. // //===----------------------------------------------------------------------===// // #ifndef LLVM_AVR_CODE_EMITTER_H #define LLVM_AVR_CODE_EMITTER_H #include "AVRFixupKinds.h" #include "llvm/MC/MCCodeEmitter.h" #include "llvm/Support/DataTypes.h" #define GET_INSTRINFO_OPERAND_TYPES_ENUM #include "AVRGenInstrInfo.inc" namespace llvm { class MCContext; class MCExpr; class MCFixup; class MCInst; class MCInstrInfo; class MCOperand; class MCSubtargetInfo; class raw_ostream; /// Writes AVR machine code to a stream. class AVRMCCodeEmitter : public MCCodeEmitter { … }; } // namespace llvm #endif // LLVM_AVR_CODE_EMITTER_H