[llvm-commits] CVS: llvm/lib/CodeGen/InstrSelection/MachineCodeForBasicBlock.cpp
Chris Lattner
lattner at cs.uiuc.edu
Sun Oct 27 18:39:00 PST 2002
Changes in directory llvm/lib/CodeGen/InstrSelection:
MachineCodeForBasicBlock.cpp updated: 1.1 -> 1.2
---
Log message:
Updates to match misha's changes
---
Diffs of the changes:
Index: llvm/lib/CodeGen/InstrSelection/MachineCodeForBasicBlock.cpp
diff -u llvm/lib/CodeGen/InstrSelection/MachineCodeForBasicBlock.cpp:1.1 llvm/lib/CodeGen/InstrSelection/MachineCodeForBasicBlock.cpp:1.2
--- llvm/lib/CodeGen/InstrSelection/MachineCodeForBasicBlock.cpp:1.1 Mon Jul 8 18:01:11 2002
+++ llvm/lib/CodeGen/InstrSelection/MachineCodeForBasicBlock.cpp Sun Oct 27 18:37:53 2002
@@ -7,11 +7,11 @@
#include "llvm/CodeGen/MachineCodeForBasicBlock.h"
AnnotationID MCFBB_AID(
- AnnotationManager::getID("CodeGen::MachineCodeForBasicBlock"));
+ AnnotationManager::getID("CodeGen::MachineBasicBlock"));
static Annotation *CreateMCFBB(AnnotationID AID, const Annotable *, void *) {
assert(AID == MCFBB_AID);
- return new MachineCodeForBasicBlock(); // Invoke constructor!
+ return new MachineBasicBlock(); // Invoke constructor!
}
// Register the annotation with the annotation factory
@@ -22,7 +22,7 @@
} RegisterCreateMCFBB;
-MachineCodeForBasicBlock::MachineCodeForBasicBlock()
+MachineBasicBlock::MachineBasicBlock()
: Annotation(MCFBB_AID)
{}
More information about the llvm-commits
mailing list