Updates to match misha's changes
authorChris Lattner <sabre@nondot.org>
Mon, 28 Oct 2002 00:37:53 +0000 (00:37 +0000)
committerChris Lattner <sabre@nondot.org>
Mon, 28 Oct 2002 00:37:53 +0000 (00:37 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4302 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/MachineBasicBlock.cpp

index 73a6728084d43b57aa6ee2d3723228f9b41dbfe8..92dc79b598b17dfb6e41b9c00a8e25b90726575a 100644 (file)
@@ -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)
 {}