[llvm-commits] CVS: llvm/lib/Analysis/PostDominators.cpp
Devang Patel
dpatel at apple.com
Thu Sep 7 16:29:33 PDT 2006
Changes in directory llvm/lib/Analysis:
PostDominators.cpp updated: 1.59 -> 1.60
---
Log message:
Untabify.
---
Diffs of the changes: (+3 -3)
PostDominators.cpp | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
Index: llvm/lib/Analysis/PostDominators.cpp
diff -u llvm/lib/Analysis/PostDominators.cpp:1.59 llvm/lib/Analysis/PostDominators.cpp:1.60
--- llvm/lib/Analysis/PostDominators.cpp:1.59 Thu Sep 7 18:22:37 2006
+++ llvm/lib/Analysis/PostDominators.cpp Thu Sep 7 18:29:19 2006
@@ -49,12 +49,12 @@
// 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());
More information about the llvm-commits
mailing list