From 9f99867c6c2861dfee33c5e8b9e9c08086bda2e5 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Mon, 28 Oct 2002 00:37:53 +0000 Subject: Updates to match misha's changes llvm-svn: 4302 --- llvm/lib/CodeGen/MachineBasicBlock.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'llvm/lib/CodeGen/MachineBasicBlock.cpp') diff --git a/llvm/lib/CodeGen/MachineBasicBlock.cpp b/llvm/lib/CodeGen/MachineBasicBlock.cpp index 73a6728..92dc79b 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) {} -- cgit v1.1