Fix all of those problems that the PPC backend has running 176.gcc :)

llvm-svn: 14565
This commit is contained in:
Chris Lattner 2004-07-02 05:48:42 +00:00
parent 6c322ecc31
commit 3594324248
1 changed files with 6 additions and 0 deletions

View File

@ -55,6 +55,9 @@ bool PowerPCTargetMachine::addPassesToEmitAssembly(PassManager &PM,
PM.add(createLowerConstantExpressionsPass());
// Make sure that no unreachable blocks are instruction selected.
PM.add(createUnreachableBlockEliminationPass());
PM.add(createPPCSimpleInstructionSelector(*this));
if (PrintMachineCode)
@ -86,6 +89,9 @@ void PowerPCJITInfo::addPassesToJITCompile(FunctionPassManager &PM) {
PM.add(createLowerConstantExpressionsPass());
// Make sure that no unreachable blocks are instruction selected.
PM.add(createUnreachableBlockEliminationPass());
PM.add(createPPCSimpleInstructionSelector(TM));
PM.add(createRegisterAllocator());
PM.add(createPrologEpilogCodeInserter());