mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-04-04 00:31:54 +00:00
Run another local value numbering phase after redundancy elimination
llvm-svn: 2625
This commit is contained in:
parent
f7333e31a1
commit
e8c237b1ce
@ -83,6 +83,10 @@ int main(int argc, char **argv) {
|
||||
Passes.add(createLICMPass()); // Hoist loop invariants
|
||||
Passes.add(createGCSEPass()); // Remove common subexprs
|
||||
Passes.add(createSCCPPass()); // Constant prop with SCCP
|
||||
|
||||
// Run instcombine after redundancy elimination to exploit opportunities
|
||||
// opened up by them.
|
||||
Passes.add(createInstructionCombiningPass());
|
||||
Passes.add(createDeadCodeEliminationPass()); // Remove Dead code/vars
|
||||
}
|
||||
Passes.add(new WriteBytecodePass(&Out)); // Write bytecode to file...
|
||||
|
Loading…
x
Reference in New Issue
Block a user