forked from OSchip/llvm-project
Insert space to avoid warning and make code more readable.
llvm-svn: 64003
This commit is contained in:
parent
4ddcc43724
commit
f009a51794
|
@ -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…
Reference in New Issue