From: Owen Anderson Date: Wed, 1 Sep 2010 18:30:15 +0000 (+0000) Subject: Tentatively add correlated value propagation to the set of standard passes. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=5627db6fb9f12e662d9026d5791506f791abe069;p=oota-llvm.git Tentatively add correlated value propagation to the set of standard passes. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@112723 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Support/StandardPasses.h b/include/llvm/Support/StandardPasses.h index 9df8a650e9d..bb3bddd3c79 100644 --- a/include/llvm/Support/StandardPasses.h +++ b/include/llvm/Support/StandardPasses.h @@ -146,6 +146,7 @@ namespace llvm { // opened up by them. PM->add(createInstructionCombiningPass()); PM->add(createJumpThreadingPass()); // Thread jumps + PM->add(createCorrelatedValuePropagationPass()); PM->add(createDeadStoreEliminationPass()); // Delete dead stores PM->add(createAggressiveDCEPass()); // Delete dead instructions PM->add(createCFGSimplificationPass()); // Merge & remove BBs