Try for the third time to teach getFirstTerminator() about debug values.
This time let's rephrase to trick gcc-4.3 into not miscompiling. llvm-svn: 123432
This commit is contained in:
@@ -156,9 +156,10 @@ MachineBasicBlock::SkipPHIsAndLabels(MachineBasicBlock::iterator I) {
|
||||
|
||||
MachineBasicBlock::iterator MachineBasicBlock::getFirstTerminator() {
|
||||
iterator I = end();
|
||||
while (I != begin() && (--I)->getDesc().isTerminator())
|
||||
while (I != begin() && ((--I)->getDesc().isTerminator() || I->isDebugValue()))
|
||||
; /*noop */
|
||||
if (I != end() && !I->getDesc().isTerminator()) ++I;
|
||||
while (I != end() && !I->getDesc().isTerminator())
|
||||
++I;
|
||||
return I;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user