diff options
author | Owen Anderson <resistor@mac.com> | 2010-09-01 18:30:15 +0000 |
---|---|---|
committer | Owen Anderson <resistor@mac.com> | 2010-09-01 18:30:15 +0000 |
commit | 5627db6fb9f12e662d9026d5791506f791abe069 (patch) | |
tree | b0953bf7ba8fc612276042151f4ad2476b1b1f87 /include | |
parent | 9bfa6fec068abb8bea4da03e5c9c39765f963ef2 (diff) | |
download | external_llvm-5627db6fb9f12e662d9026d5791506f791abe069.zip external_llvm-5627db6fb9f12e662d9026d5791506f791abe069.tar.gz external_llvm-5627db6fb9f12e662d9026d5791506f791abe069.tar.bz2 |
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
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/Support/StandardPasses.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/llvm/Support/StandardPasses.h b/include/llvm/Support/StandardPasses.h index 9df8a65..bb3bddd 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 |