Fix 80-column violation.

llvm-svn: 270329
This commit is contained in:
Chad Rosier 2016-05-21 21:12:06 +00:00
parent 1c980ca5aa
commit 56def258e3
1 changed files with 2 additions and 1 deletions

View File

@ -490,7 +490,8 @@ bool llvm::SimplifyInstructionsInBlock(BasicBlock *BB,
// Iterate over the original function, only adding insts to the worklist
// if they actually need to be revisited. This avoids having to pre-init
// the worklist with the entire function's worth of instructions.
for (BasicBlock::iterator BI = BB->begin(), E = std::prev(BB->end()); BI != E;) {
for (BasicBlock::iterator BI = BB->begin(), E = std::prev(BB->end());
BI != E;) {
assert(!BI->isTerminator());
Instruction *I = &*BI;
++BI;