diff options
author | Mike Stump <mrs@apple.com> | 2009-02-07 03:36:02 +0000 |
---|---|---|
committer | Mike Stump <mrs@apple.com> | 2009-02-07 03:36:02 +0000 |
commit | f009a517944bd63e157682c54c61f73aaf91d40e (patch) | |
tree | 34c31e63ebe50a718636460d7ddfd1f866c1fae4 | |
parent | 4ddcc43724b9d87fb7c51ace0ee342d34438d59b (diff) | |
download | bcm5719-llvm-f009a517944bd63e157682c54c61f73aaf91d40e.tar.gz bcm5719-llvm-f009a517944bd63e157682c54c61f73aaf91d40e.zip |
Insert space to avoid warning and make code more readable.
llvm-svn: 64003
-rw-r--r-- | llvm/lib/Transforms/Scalar/CondPropagate.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Transforms/Scalar/CondPropagate.cpp b/llvm/lib/Transforms/Scalar/CondPropagate.cpp index 9c753df79e6..7d5e581b22e 100644 --- a/llvm/lib/Transforms/Scalar/CondPropagate.cpp +++ b/llvm/lib/Transforms/Scalar/CondPropagate.cpp @@ -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; |