aboutsummaryrefslogtreecommitdiff
path: root/lib/Target/SparcV9/MachineCodeForInstruction.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2004-06-27 18:50:49 +0000
committerChris Lattner <sabre@nondot.org>2004-06-27 18:50:49 +0000
commitea104df2b1e6fb56f589b7380777e040e887c416 (patch)
tree15f1a42b83aa8b8c8678f407a1be7b6655a64caa /lib/Target/SparcV9/MachineCodeForInstruction.h
parent4aa5b2affbbd99113c83b7e9543ba4423235a919 (diff)
This class is no longer an annotation
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14437 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/SparcV9/MachineCodeForInstruction.h')
-rw-r--r--lib/Target/SparcV9/MachineCodeForInstruction.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/lib/Target/SparcV9/MachineCodeForInstruction.h b/lib/Target/SparcV9/MachineCodeForInstruction.h
index 213a736ff5..32935bba28 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 <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);