summaryrefslogtreecommitdiffstats
path: root/llvm/lib/CodeGen/MachineBasicBlock.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-10-28 00:37:53 +0000
committerChris Lattner <sabre@nondot.org>2002-10-28 00:37:53 +0000
commit9f99867c6c2861dfee33c5e8b9e9c08086bda2e5 (patch)
tree33f2bd544cc80b6011e7b1bb7bb9a17b3e158a3f /llvm/lib/CodeGen/MachineBasicBlock.cpp
parent7ae7f84cf3570e82facb0cf9032084e7c4549191 (diff)
downloadbcm5719-llvm-9f99867c6c2861dfee33c5e8b9e9c08086bda2e5.tar.gz
bcm5719-llvm-9f99867c6c2861dfee33c5e8b9e9c08086bda2e5.zip
Updates to match misha's changes
llvm-svn: 4302
Diffstat (limited to 'llvm/lib/CodeGen/MachineBasicBlock.cpp')
-rw-r--r--llvm/lib/CodeGen/MachineBasicBlock.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/CodeGen/MachineBasicBlock.cpp b/llvm/lib/CodeGen/MachineBasicBlock.cpp
index 73a6728084d..92dc79b598b 100644
--- a/llvm/lib/CodeGen/MachineBasicBlock.cpp
+++ b/llvm/lib/CodeGen/MachineBasicBlock.cpp
@@ -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 @@ static struct MCFBBInitializer {
} RegisterCreateMCFBB;
-MachineCodeForBasicBlock::MachineCodeForBasicBlock()
+MachineBasicBlock::MachineBasicBlock()
: Annotation(MCFBB_AID)
{}
OpenPOWER on IntegriCloud