mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-01 15:33:33 +00:00
tidy up style. no functional change.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@107073 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
50f424c3d0
commit
e89c5e57cc
@ -41,9 +41,10 @@ void Thumb2HazardRecognizer::EmitInstruction(SUnit *SU) {
|
|||||||
ITBlockSize = 4 - NumTZ;
|
ITBlockSize = 4 - NumTZ;
|
||||||
MachineBasicBlock::iterator I = MI;
|
MachineBasicBlock::iterator I = MI;
|
||||||
for (unsigned i = 0; i < ITBlockSize; ++i) {
|
for (unsigned i = 0; i < ITBlockSize; ++i) {
|
||||||
|
// Advance to the next instruction, skipping any dbg_value instructions.
|
||||||
|
do {
|
||||||
++I;
|
++I;
|
||||||
while (I->isDebugValue())
|
} while (I->isDebugValue());
|
||||||
++I;
|
|
||||||
ITBlockMIs[ITBlockSize-1-i] = &*I;
|
ITBlockMIs[ITBlockSize-1-i] = &*I;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user