Rename createSimpleX86RegisterAllocator to createSimpleRegisterAllocator

llvm-svn: 5071
This commit is contained in:
Chris Lattner 2002-12-16 14:38:13 +00:00
parent c63d63a7c7
commit 0b9f0b5faf
2 changed files with 5 additions and 5 deletions

View File

@ -20,11 +20,11 @@ class Pass;
///
Pass *createSimpleX86InstructionSelector(TargetMachine &TM);
/// X86SimpleRegisterAllocation - This function converts the specified machine
/// code function from SSA form to use explicit registers by spilling every
/// register. Wow, great policy huh?
/// createSimpleRegisterAllocation - This function converts the specified
/// machine code function from SSA form to use explicit registers by spilling
/// every register. Wow, great policy huh?
///
Pass *createSimpleX86RegisterAllocator(TargetMachine &TM);
Pass *createSimpleRegisterAllocator(TargetMachine &TM);
/// createX86CodePrinterPass - Print out the specified machine code function to
/// the specified stream. This function should work regardless of whether or

View File

@ -43,7 +43,7 @@ bool X86TargetMachine::addPassesToJITCompile(PassManager &PM) {
DEBUG(PM.add(createMachineFunctionPrinterPass()));
// Perform register allocation to convert to a concrete x86 representation
PM.add(createSimpleX86RegisterAllocator(*this));
PM.add(createSimpleRegisterAllocator(*this));
// Print the instruction selected machine code...
// PM.add(createMachineFunctionPrinterPass());