From 74c06b202fba4a92b59c2c529f37350130ca2073 Mon Sep 17 00:00:00 2001 From: Owen Anderson Date: Wed, 29 Sep 2010 23:31:09 +0000 Subject: [PATCH] Revert r115099 (adding early jump threading). It's not clear if the benefits are worth the compile time cost. llvm-svn: 115106 --- llvm/include/llvm/Support/StandardPasses.h | 1 - 1 file changed, 1 deletion(-) diff --git a/llvm/include/llvm/Support/StandardPasses.h b/llvm/include/llvm/Support/StandardPasses.h index 6e76426b2057..1b40ede14b84 100644 --- a/llvm/include/llvm/Support/StandardPasses.h +++ b/llvm/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.