summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Analysis
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
commit0142cd129e49492673158fad59716b29f98af664 (patch)
tree6e4ac14e66a2771286d474ab8d239f42ec2e0912 /llvm/lib/Analysis
parentb8164e61314744f204a4746f8a7f1cf83eb67fe9 (diff)
downloadbcm5719-llvm-0142cd129e49492673158fad59716b29f98af664.tar.gz
bcm5719-llvm-0142cd129e49492673158fad59716b29f98af664.zip
Untabify.
llvm-svn: 30168
Diffstat (limited to 'llvm/lib/Analysis')
-rw-r--r--llvm/lib/Analysis/PostDominators.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/Analysis/PostDominators.cpp b/llvm/lib/Analysis/PostDominators.cpp
index b0b2374317d..bfa152035e0 100644
--- a/llvm/lib/Analysis/PostDominators.cpp
+++ b/llvm/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());
OpenPOWER on IntegriCloud