diff options
author | Chris Lattner <sabre@nondot.org> | 2002-10-28 00:37:53 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-10-28 00:37:53 +0000 |
commit | 9f99867c6c2861dfee33c5e8b9e9c08086bda2e5 (patch) | |
tree | 33f2bd544cc80b6011e7b1bb7bb9a17b3e158a3f /llvm/lib/CodeGen/MachineBasicBlock.cpp | |
parent | 7ae7f84cf3570e82facb0cf9032084e7c4549191 (diff) | |
download | bcm5719-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.cpp | 6 |
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) {} |