1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 19:52:54 +01:00

Updates to match misha's changes

llvm-svn: 4302
This commit is contained in:
Chris Lattner 2002-10-28 00:37:53 +00:00
parent 142795fd17
commit ffa0482331

View 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)
{}