mirror of
https://github.com/RPCS3/llvm.git
synced 2025-01-27 05:32:22 +00:00
Fix 80-column violation.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@270329 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
8fdeacc0ca
commit
7143168577
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user