No need to run dce with adce right behind!

llvm-svn: 2738
This commit is contained in:
Chris Lattner 2002-05-23 19:27:50 +00:00
parent 450d928d3a
commit f08d7436ca
1 changed files with 0 additions and 1 deletions

View File

@ -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
}