diff options
author | Chris Lattner <sabre@nondot.org> | 2004-05-01 22:41:51 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-05-01 22:41:51 +0000 |
commit | 4cbd160b45a8066bb07310608f310e068a39a688 (patch) | |
tree | 4f1ccc0bac5f59c05567f17ca77c8e286d0c3b5e /llvm/lib | |
parent | 88da6f7b52b2086c67c148dafeec3685f15b8c4b (diff) | |
download | bcm5719-llvm-4cbd160b45a8066bb07310608f310e068a39a688.tar.gz bcm5719-llvm-4cbd160b45a8066bb07310608f310e068a39a688.zip |
Fix my missing parens
llvm-svn: 13307
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/Transforms/Utils/SimplifyCFG.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/Utils/SimplifyCFG.cpp b/llvm/lib/Transforms/Utils/SimplifyCFG.cpp index 78454645b32..7f2060fbfc8 100644 --- a/llvm/lib/Transforms/Utils/SimplifyCFG.cpp +++ b/llvm/lib/Transforms/Utils/SimplifyCFG.cpp @@ -816,7 +816,7 @@ bool llvm::SimplifyCFG(BasicBlock *BB) { if (BranchInst *PBI = dyn_cast<BranchInst>(OnlyPred->getTerminator())) if (PBI->isConditional() && PBI->getCondition() == BI->getCondition() && - PBI->getSuccessor(0) != BB || PBI->getSuccessor(1) != BB) { + (PBI->getSuccessor(0) != BB || PBI->getSuccessor(1) != BB)) { // Okay, the outcome of this conditional branch is statically // knowable. Delete the outgoing CFG edge that is impossible to // execute. |