aboutsummaryrefslogtreecommitdiff
path: root/lib/Transforms/Scalar/TailDuplication.cpp
diff options
context:
space:
mode:
authorGabor Greif <ggreif@gmail.com>2010-07-12 11:32:39 +0000
committerGabor Greif <ggreif@gmail.com>2010-07-12 11:32:39 +0000
commite99e0775226f09a4ac5e135c3c9bc1a836f09d15 (patch)
treeea0cc441be2616218b9dafef5e1fa45b1b8352a6 /lib/Transforms/Scalar/TailDuplication.cpp
parentfc41f9081798f04d1c2e8be54f94deebe4be97e3 (diff)
back out r108131 (of TailDuplication.cpp) for now, it causes a buildbot failure
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@108135 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/Scalar/TailDuplication.cpp')
-rw-r--r--lib/Transforms/Scalar/TailDuplication.cpp9
1 files changed, 4 insertions, 5 deletions
diff --git a/lib/Transforms/Scalar/TailDuplication.cpp b/lib/Transforms/Scalar/TailDuplication.cpp
index febc872d93..2306a77670 100644
--- a/lib/Transforms/Scalar/TailDuplication.cpp
+++ b/lib/Transforms/Scalar/TailDuplication.cpp
@@ -206,14 +206,13 @@ static BasicBlock *FindObviousSharedDomOf(BasicBlock *SrcBlock,
// there is only one other pred, get it, otherwise we can't handle it.
PI = pred_begin(DstBlock); PE = pred_end(DstBlock);
BasicBlock *DstOtherPred = 0;
- BasicBlock *P = *PI;
- if (P == SrcBlock) {
+ if (*PI == SrcBlock) {
if (++PI == PE) return 0;
- DstOtherPred = P;
+ DstOtherPred = *PI;
if (++PI != PE) return 0;
} else {
- DstOtherPred = P;
- if (++PI == PE || P != SrcBlock || ++PI != PE) return 0;
+ DstOtherPred = *PI;
+ if (++PI == PE || *PI != SrcBlock || ++PI != PE) return 0;
}
// We can handle two situations here: "if then" and "if then else" blocks. An