From: Owen Anderson Date: Wed, 29 Sep 2010 23:31:09 +0000 (+0000) Subject: Revert r115099 (adding early jump threading). It's not clear if the benefits are... X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=fe45b104b3fb7a32dfed35bc4d82f3b89a39ec42;p=oota-llvm.git Revert r115099 (adding early jump threading). It's not clear if the benefits are worth the compile time cost. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@115106 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Support/StandardPasses.h b/include/llvm/Support/StandardPasses.h index 6e76426b205..1b40ede14b8 100644 --- a/include/llvm/Support/StandardPasses.h +++ b/include/llvm/Support/StandardPasses.h @@ -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.