mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-31 12:41:49 +01:00
Add braces to remove silly warning.
llvm-svn: 147264
This commit is contained in:
parent
b598485fb9
commit
82ca4569b9
@ -569,7 +569,7 @@ static bool DebugACrash(BugDriver &BD,
|
||||
for (Function::const_iterator BI = FI->begin(), E = FI->end(); BI != E;
|
||||
++BI)
|
||||
for (BasicBlock::const_iterator I = BI->begin(), E = --BI->end();
|
||||
I != E; ++I, ++CurInstructionNum)
|
||||
I != E; ++I, ++CurInstructionNum) {
|
||||
if (InstructionsToSkipBeforeDeleting) {
|
||||
--InstructionsToSkipBeforeDeleting;
|
||||
} else {
|
||||
@ -594,6 +594,7 @@ static bool DebugACrash(BugDriver &BD,
|
||||
// one.
|
||||
delete M;
|
||||
}
|
||||
}
|
||||
|
||||
if (InstructionsToSkipBeforeDeleting) {
|
||||
InstructionsToSkipBeforeDeleting = 0;
|
||||
|
Loading…
x
Reference in New Issue
Block a user