summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorOwen Anderson <resistor@mac.com>2010-09-29 23:31:09 +0000
committerOwen Anderson <resistor@mac.com>2010-09-29 23:31:09 +0000
commitfe45b104b3fb7a32dfed35bc4d82f3b89a39ec42 (patch)
tree2b82cfcb436ae914b518f4e764565b1c120ed288 /include
parenta9a7a1a9a557cc03d1fed6cba3f27520be5274c0 (diff)
downloadllvm-fe45b104b3fb7a32dfed35bc4d82f3b89a39ec42.tar.gz
llvm-fe45b104b3fb7a32dfed35bc4d82f3b89a39ec42.tar.bz2
llvm-fe45b104b3fb7a32dfed35bc4d82f3b89a39ec42.tar.xz
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
Diffstat (limited to 'include')
-rw-r--r--include/llvm/Support/StandardPasses.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/include/llvm/Support/StandardPasses.h b/include/llvm/Support/StandardPasses.h
index 6e76426b20..1b40ede14b 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.