[llvm-commits] CVS: llvm/include/llvm/CodeGen/MachineCodeForInstruction.h
Chris Lattner
lattner at cs.uiuc.edu
Sun Jun 27 13:52:08 PDT 2004
Changes in directory llvm/include/llvm/CodeGen:
MachineCodeForInstruction.h updated: 1.14 -> 1.15
---
Log message:
This class is no longer an annotation
---
Diffs of the changes: (+2 -5)
Index: llvm/include/llvm/CodeGen/MachineCodeForInstruction.h
diff -u llvm/include/llvm/CodeGen/MachineCodeForInstruction.h:1.14 llvm/include/llvm/CodeGen/MachineCodeForInstruction.h:1.15
--- llvm/include/llvm/CodeGen/MachineCodeForInstruction.h:1.14 Sun Jun 27 13:21:20 2004
+++ llvm/include/llvm/CodeGen/MachineCodeForInstruction.h Sun Jun 27 13:50:49 2004
@@ -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 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);
More information about the llvm-commits
mailing list