forked from OSchip/llvm-project
No need to run dce with adce right behind!
llvm-svn: 2738
This commit is contained in:
parent
450d928d3a
commit
f08d7436ca
|
|
@ -87,7 +87,6 @@ int main(int argc, char **argv) {
|
|||
// Run instcombine after redundancy elimination to exploit opportunities
|
||||
// opened up by them.
|
||||
Passes.add(createInstructionCombiningPass());
|
||||
Passes.add(createDeadCodeEliminationPass()); // Remove Dead code/vars
|
||||
Passes.add(createAggressiveDCEPass()); // SSA based 'Agressive DCE'
|
||||
Passes.add(createCFGSimplificationPass()); // Merge & remove BBs
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue