Revert r115099 (adding early jump threading). It's not clear if the benefits are worth the compile time cost.

llvm-svn: 115106
This commit is contained in:
Owen Anderson 2010-09-29 23:31:09 +00:00
parent 7939806ecc
commit 74c06b202f
1 changed files with 0 additions and 1 deletions

View File

@ -104,7 +104,6 @@ namespace llvm {
PM->add(createDeadArgEliminationPass()); // Dead argument elimination
}
PM->add(createInstructionCombiningPass()); // Clean up after IPCP & DAE
PM->add(createJumpThreadingPass()); // Clean up after IPCP & DAE
PM->add(createCFGSimplificationPass()); // Clean up after IPCP & DAE
// Start of CallGraph SCC passes.