mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-25 13:24:46 +00:00
Insert space to avoid warning and make code more readable.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@64003 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -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;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user