Skip to content
This repository was archived by the owner on Feb 5, 2019. It is now read-only.

Commit c782feb

Browse files
eddybarielb1
authored andcommitted
GH #49: Run GVN again after InstCombine.
1 parent 318ccee commit c782feb

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

lib/Transforms/IPO/PassManagerBuilder.cpp

+2
Original file line numberDiff line numberDiff line change
@@ -342,6 +342,8 @@ void PassManagerBuilder::addFunctionSimplificationPasses(
342342
// Run instcombine after redundancy elimination to exploit opportunities
343343
// opened up by them.
344344
addInstructionCombiningPass(MPM);
345+
if (OptLevel > 1)
346+
MPM.add(createGVNPass(DisableGVNLoadPRE)); // Remove redundancies
345347
addExtensionsToPM(EP_Peephole, MPM);
346348
MPM.add(createJumpThreadingPass()); // Thread jumps
347349
MPM.add(createCorrelatedValuePropagationPass());

0 commit comments

Comments
 (0)