1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-02-01 13:11:39 +01:00

Undo what looks like accidental removal of an instcombine pass in r122740.

llvm-svn: 122743
This commit is contained in:
Evan Cheng 2011-01-03 07:53:18 +00:00
parent 3914a9751c
commit 7465840a55

View File

@ -132,6 +132,7 @@ namespace llvm {
PM->add(createEarlyCSEPass()); // Catch trivial redundancies
if (SimplifyLibCalls)
PM->add(createSimplifyLibCallsPass()); // Library Call Optimizations
PM->add(createInstructionCombiningPass()); // Cleanup for scalarrepl.
PM->add(createJumpThreadingPass()); // Thread jumps.
PM->add(createCorrelatedValuePropagationPass()); // Propagate conditionals
PM->add(createCFGSimplificationPass()); // Merge & remove BBs