File tree Expand file tree Collapse file tree 2 files changed +1
-4
lines changed
include/llvm/Transforms/IPO Expand file tree Collapse file tree 2 files changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -157,8 +157,6 @@ class PassManagerBuilder {
157
157
bool SLPVectorize;
158
158
bool LoopVectorize;
159
159
bool LoopsInterleaved;
160
- bool RerollLoops;
161
- bool NewGVN;
162
160
bool DisableGVNLoadPRE;
163
161
bool ForgetAllSCEVInLoopUnroll;
164
162
bool VerifyInput;
Original file line number Diff line number Diff line change @@ -234,8 +234,7 @@ void PassManagerBuilder::addFunctionSimplificationPasses(
234
234
235
235
if (OptLevel > 1) {
236
236
MPM.add(createMergedLoadStoreMotionPass()); // Merge ld/st in diamonds
237
- MPM.add(NewGVN ? createNewGVNPass()
238
- : createGVNPass(DisableGVNLoadPRE)); // Remove redundancies
237
+ MPM.add(createGVNPass(DisableGVNLoadPRE)); // Remove redundancies
239
238
}
240
239
MPM.add(createSCCPPass()); // Constant prop with SCCP
241
240
You can’t perform that action at this time.
0 commit comments