OSDN Git Service

Revert r115099 (adding early jump threading). It's not clear if the benefits are...
authorOwen Anderson <resistor@mac.com>
Wed, 29 Sep 2010 23:31:09 +0000 (23:31 +0000)
committerOwen Anderson <resistor@mac.com>
Wed, 29 Sep 2010 23:31:09 +0000 (23:31 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@115106 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Support/StandardPasses.h

index 6e76426..1b40ede 100644 (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.