diff options
author | Owen Anderson <resistor@mac.com> | 2010-09-29 23:31:09 +0000 |
---|---|---|
committer | Owen Anderson <resistor@mac.com> | 2010-09-29 23:31:09 +0000 |
commit | fe45b104b3fb7a32dfed35bc4d82f3b89a39ec42 (patch) | |
tree | 2b82cfcb436ae914b518f4e764565b1c120ed288 /include | |
parent | a9a7a1a9a557cc03d1fed6cba3f27520be5274c0 (diff) | |
download | external_llvm-fe45b104b3fb7a32dfed35bc4d82f3b89a39ec42.zip external_llvm-fe45b104b3fb7a32dfed35bc4d82f3b89a39ec42.tar.gz external_llvm-fe45b104b3fb7a32dfed35bc4d82f3b89a39ec42.tar.bz2 |
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.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/llvm/Support/StandardPasses.h b/include/llvm/Support/StandardPasses.h index 6e76426..1b40ede 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. |