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;
|
return;
|
||||||
BasicBlock::iterator BBI = BB->begin();
|
BasicBlock::iterator BBI = BB->begin();
|
||||||
BasicBlock::iterator BBE = BB->end();
|
BasicBlock::iterator BBE = BB->end();
|
||||||
while (BBI != BBE && isa<DbgInfoIntrinsic>(++BBI));
|
while (BBI != BBE && isa<DbgInfoIntrinsic>(++BBI)) ;
|
||||||
if (&*BBI != BI)
|
if (&*BBI != BI)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
@ -192,7 +192,7 @@ void CondProp::SimplifyPredecessors(SwitchInst *SI) {
|
||||||
return;
|
return;
|
||||||
BasicBlock::iterator BBI = BB->begin();
|
BasicBlock::iterator BBI = BB->begin();
|
||||||
BasicBlock::iterator BBE = BB->end();
|
BasicBlock::iterator BBE = BB->end();
|
||||||
while (BBI != BBE && isa<DbgInfoIntrinsic>(++BBI));
|
while (BBI != BBE && isa<DbgInfoIntrinsic>(++BBI)) ;
|
||||||
if (&*BBI != SI)
|
if (&*BBI != SI)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue