mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-03 08:51:43 +00:00
tidy up style. no functional change.
llvm-svn: 107073
This commit is contained in:
parent
bd121d9b9f
commit
8441e67098
@ -41,9 +41,10 @@ void Thumb2HazardRecognizer::EmitInstruction(SUnit *SU) {
|
||||
ITBlockSize = 4 - NumTZ;
|
||||
MachineBasicBlock::iterator I = MI;
|
||||
for (unsigned i = 0; i < ITBlockSize; ++i) {
|
||||
++I;
|
||||
while (I->isDebugValue())
|
||||
// Advance to the next instruction, skipping any dbg_value instructions.
|
||||
do {
|
||||
++I;
|
||||
} while (I->isDebugValue());
|
||||
ITBlockMIs[ITBlockSize-1-i] = &*I;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user