From ea104df2b1e6fb56f589b7380777e040e887c416 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sun, 27 Jun 2004 18:50:49 +0000 Subject: [PATCH] This class is no longer an annotation git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14437 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/CodeGen/MachineCodeForInstruction.h | 7 ++----- lib/Target/SparcV9/MachineCodeForInstruction.h | 7 ++----- 2 files changed, 4 insertions(+), 10 deletions(-) diff --git a/include/llvm/CodeGen/MachineCodeForInstruction.h b/include/llvm/CodeGen/MachineCodeForInstruction.h index 213a736ff5e..32935bba280 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 namespace llvm { @@ -38,14 +37,12 @@ class Instruction; class Value; class CallArgsDescriptor; -extern AnnotationID MCFI_AID; - -class MachineCodeForInstruction : public Annotation { + class MachineCodeForInstruction { std::vector tempVec; // used by m/c instr but not VM instr std::vector 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); diff --git a/lib/Target/SparcV9/MachineCodeForInstruction.h b/lib/Target/SparcV9/MachineCodeForInstruction.h index 213a736ff5e..32935bba280 100644 --- a/lib/Target/SparcV9/MachineCodeForInstruction.h +++ b/lib/Target/SparcV9/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 namespace llvm { @@ -38,14 +37,12 @@ class Instruction; class Value; class CallArgsDescriptor; -extern AnnotationID MCFI_AID; - -class MachineCodeForInstruction : public Annotation { + class MachineCodeForInstruction { std::vector tempVec; // used by m/c instr but not VM instr std::vector 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); -- 2.11.0