aboutsummaryrefslogtreecommitdiff
path: root/lib/Analysis/PostDominators.cpp
diff options
context:
space:
mode:
authorDevang Patel <dpatel@apple.com>2006-09-07 23:29:19 +0000
committerDevang Patel <dpatel@apple.com>2006-09-07 23:29:19 +0000
commitf93f68347f06f6e12dd214c21436bfde55e66bf7 (patch)
treec9c19607b83232aa457c8aa57ddceb6d71b7a379 /lib/Analysis/PostDominators.cpp
parentc8719e935397ee86cd8555771f0a40cc0496e8f2 (diff)
Untabify.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30168 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/PostDominators.cpp')
-rw-r--r--lib/Analysis/PostDominators.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Analysis/PostDominators.cpp b/lib/Analysis/PostDominators.cpp
index b0b2374317..bfa152035e 100644
--- a/lib/Analysis/PostDominators.cpp
+++ b/lib/Analysis/PostDominators.cpp
@@ -49,12 +49,12 @@ unsigned ImmediatePostDominators::DFSPass(BasicBlock *V, InfoRec &VInfo,
// For PostDominators, we want to walk predecessors rather than successors
// as we do in forward Dominators.
for (pred_iterator PI = pred_begin(currentBB), PE = pred_end(currentBB);
- PI != PE; ++PI) {
+ PI != PE; ++PI) {
InfoRec &SuccVInfo = Info[*PI];
if (SuccVInfo.Semi == 0) {
- SuccVInfo.Parent = currentBB;
+ SuccVInfo.Parent = currentBB;
- workStack.push_back(std::make_pair(*PI, &SuccVInfo));
+ workStack.push_back(std::make_pair(*PI, &SuccVInfo));
}
}
} while (!workStack.empty());