forked from OSchip/llvm-project
Tentatively add correlated value propagation to the set of standard passes.
llvm-svn: 112723
This commit is contained in:
parent
73f988cafa
commit
c637c49c11
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue