mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-31 20:51:52 +01:00
Insert space to avoid warning and make code more readable.
llvm-svn: 64003
This commit is contained in:
parent
11dca311a6
commit
ea0132f5bc
@ -153,7 +153,7 @@ void CondProp::SimplifyPredecessors(BranchInst *BI) {
|
||||
return;
|
||||
BasicBlock::iterator BBI = BB->begin();
|
||||
BasicBlock::iterator BBE = BB->end();
|
||||
while (BBI != BBE && isa<DbgInfoIntrinsic>(++BBI));
|
||||
while (BBI != BBE && isa<DbgInfoIntrinsic>(++BBI)) ;
|
||||
if (&*BBI != BI)
|
||||
return;
|
||||
|
||||
@ -192,7 +192,7 @@ void CondProp::SimplifyPredecessors(SwitchInst *SI) {
|
||||
return;
|
||||
BasicBlock::iterator BBI = BB->begin();
|
||||
BasicBlock::iterator BBE = BB->end();
|
||||
while (BBI != BBE && isa<DbgInfoIntrinsic>(++BBI));
|
||||
while (BBI != BBE && isa<DbgInfoIntrinsic>(++BBI)) ;
|
||||
if (&*BBI != SI)
|
||||
return;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user