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 | 0c68e8ce6e68c45d6b4cc55f3044cec8687c1702 (patch) | |
tree | d613f5e79efdfebe1ec73b65b548ca2477b2956b /lib/CodeGen/MachineBasicBlock.cpp | |
parent | fce1143bcfa73f61845002fa50473d1a01384202 (diff) |
Updates to match misha's changes
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4302 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/MachineBasicBlock.cpp')
-rw-r--r-- | lib/CodeGen/MachineBasicBlock.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/CodeGen/MachineBasicBlock.cpp b/lib/CodeGen/MachineBasicBlock.cpp index 73a6728084..92dc79b598 100644 --- a/lib/CodeGen/MachineBasicBlock.cpp +++ b/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) {} |