diff options
author | Bill Wendling <isanbard@gmail.com> | 2010-03-14 10:40:28 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2010-03-14 10:40:28 +0000 |
commit | 4c7004c3aa9650dd2114499ecac3a8f310594b4d (patch) | |
tree | 4716dcb14feef642ab87ba09c97c3c50bbf4420f /lib/Transforms/Utils/SimplifyCFG.cpp | |
parent | 54e56f247fa9361208901ff6009499cdffe41b05 (diff) | |
download | external_llvm-4c7004c3aa9650dd2114499ecac3a8f310594b4d.zip external_llvm-4c7004c3aa9650dd2114499ecac3a8f310594b4d.tar.gz external_llvm-4c7004c3aa9650dd2114499ecac3a8f310594b4d.tar.bz2 |
Make returns more consistent with others.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@98490 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/Utils/SimplifyCFG.cpp')
-rw-r--r-- | lib/Transforms/Utils/SimplifyCFG.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Transforms/Utils/SimplifyCFG.cpp b/lib/Transforms/Utils/SimplifyCFG.cpp index f343c38..2ce5bdc 100644 --- a/lib/Transforms/Utils/SimplifyCFG.cpp +++ b/lib/Transforms/Utils/SimplifyCFG.cpp @@ -1826,7 +1826,7 @@ bool SimplifyCFGOpt::run(BasicBlock *BB) { // switch. if (BasicBlock *OnlyPred = BB->getSinglePredecessor()) if (SimplifyEqualityComparisonWithOnlyPredecessor(BI, OnlyPred)) - return SimplifyCFG(BB) || 1; + return SimplifyCFG(BB) | true; // This block must be empty, except for the setcond inst, if it exists. // Ignore dbg intrinsics. @@ -1860,7 +1860,7 @@ bool SimplifyCFGOpt::run(BasicBlock *BB) { // branches to us and one of our successors, fold the setcc into the // predecessor and use logical operations to pick the right destination. if (FoldBranchToCommonDest(BI)) - return SimplifyCFG(BB) | 1; + return SimplifyCFG(BB) | true; // Scan predecessor blocks for conditional branches. |