diff options
Diffstat (limited to 'include/llvm/CodeGen/MachineCodeForInstruction.h')
-rw-r--r-- | include/llvm/CodeGen/MachineCodeForInstruction.h | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/include/llvm/CodeGen/MachineCodeForInstruction.h b/include/llvm/CodeGen/MachineCodeForInstruction.h index 213a736ff5..32935bba28 100644 --- a/include/llvm/CodeGen/MachineCodeForInstruction.h +++ b/include/llvm/CodeGen/MachineCodeForInstruction.h @@ -28,7 +28,6 @@ #ifndef LLVM_CODEGEN_MACHINECODE_FOR_INSTRUCTION_H #define LLVM_CODEGEN_MACHINECODE_FOR_INSTRUCTION_H -#include "Support/Annotation.h" #include <vector> namespace llvm { @@ -38,14 +37,12 @@ class Instruction; class Value; class CallArgsDescriptor; -extern AnnotationID MCFI_AID; - -class MachineCodeForInstruction : public Annotation { + class MachineCodeForInstruction { std::vector<Value*> tempVec; // used by m/c instr but not VM instr std::vector<MachineInstr*> Contents; // the machine instr for this VM instr CallArgsDescriptor* callArgsDesc; // only used for CALL instructions public: - MachineCodeForInstruction() : Annotation(MCFI_AID), callArgsDesc(NULL) {} + MachineCodeForInstruction() : callArgsDesc(NULL) {} ~MachineCodeForInstruction(); static MachineCodeForInstruction &get(const Instruction *I); |