[llvm-commits] [llvm] r115106 - /llvm/trunk/include/llvm/Support/StandardPasses.h
Owen Anderson
resistor at mac.com
Wed Sep 29 16:31:10 PDT 2010
Author: resistor
Date: Wed Sep 29 18:31:09 2010
New Revision: 115106
URL: http://llvm.org/viewvc/llvm-project?rev=115106&view=rev
Log:
Revert r115099 (adding early jump threading). It's not clear if the benefits are worth the compile time cost.
Modified:
llvm/trunk/include/llvm/Support/StandardPasses.h
Modified: llvm/trunk/include/llvm/Support/StandardPasses.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Support/StandardPasses.h?rev=115106&r1=115105&r2=115106&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Support/StandardPasses.h (original)
+++ llvm/trunk/include/llvm/Support/StandardPasses.h Wed Sep 29 18:31:09 2010
@@ -104,7 +104,6 @@
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.
More information about the llvm-commits
mailing list