simplify; NFC

llvm-svn: 259323
This commit is contained in:
Sanjay Patel 2016-01-31 16:33:33 +00:00
parent bbdab7af5a
commit 24b77d11bc
1 changed files with 4 additions and 7 deletions

View File

@ -3043,14 +3043,11 @@ combineInstructionsOverFunction(Function &F, InstCombineWorklist &Worklist,
DEBUG(dbgs() << "\n\nINSTCOMBINE ITERATION #" << Iteration << " on "
<< F.getName() << "\n");
bool Changed = false;
if (prepareICWorklistFromFunction(F, DL, &TLI, Worklist))
Changed = true;
bool Changed = prepareICWorklistFromFunction(F, DL, &TLI, Worklist);
InstCombiner IC(Worklist, &Builder, F.optForMinSize(),
AA, &AC, &TLI, &DT, DL, LI);
if (IC.run())
Changed = true;
InstCombiner IC(Worklist, &Builder, F.optForMinSize(), AA, &AC, &TLI, &DT,
DL, LI);
Changed |= IC.run();
if (!Changed)
break;