diff options
author | Owen Anderson <resistor@mac.com> | 2010-09-01 19:20:46 +0000 |
---|---|---|
committer | Owen Anderson <resistor@mac.com> | 2010-09-01 19:20:46 +0000 |
commit | 5925053b3216124b0ab44669b58b135cb00d55c9 (patch) | |
tree | 084bba81117cd3c9ba0fcc559d251b121bed88ae | |
parent | cb2e56fa82a6cad9596d7fd26358c6374b8ec6f5 (diff) | |
download | bcm5719-llvm-5925053b3216124b0ab44669b58b135cb00d55c9.tar.gz bcm5719-llvm-5925053b3216124b0ab44669b58b135cb00d55c9.zip |
Disable CorrelatedValuePropagation while I track down selfhost failures.
llvm-svn: 112727
-rw-r--r-- | llvm/include/llvm/Support/StandardPasses.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/llvm/include/llvm/Support/StandardPasses.h b/llvm/include/llvm/Support/StandardPasses.h index bb3bddd3c79..9df8a650e9d 100644 --- a/llvm/include/llvm/Support/StandardPasses.h +++ b/llvm/include/llvm/Support/StandardPasses.h @@ -146,7 +146,6 @@ 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 |