[llvm-commits] CVS: llvm/include/llvm/Analysis/Dominators.h
Devang Patel
dpatel at apple.com
Wed May 23 12:56:00 PDT 2007
Changes in directory llvm/include/llvm/Analysis:
Dominators.h updated: 1.82 -> 1.83
---
Log message:
Add dump() routines for debugging assistance.
---
Diffs of the changes: (+3 -0)
Dominators.h | 3 +++
1 files changed, 3 insertions(+)
Index: llvm/include/llvm/Analysis/Dominators.h
diff -u llvm/include/llvm/Analysis/Dominators.h:1.82 llvm/include/llvm/Analysis/Dominators.h:1.83
--- llvm/include/llvm/Analysis/Dominators.h:1.82 Sun May 13 20:54:16 2007
+++ llvm/include/llvm/Analysis/Dominators.h Wed May 23 14:55:36 2007
@@ -199,6 +199,7 @@
void print(std::ostream *OS, const Module* M = 0) const {
if (OS) print(*OS, M);
}
+ virtual void dump();
};
//===-------------------------------------
@@ -372,6 +373,7 @@
void print(std::ostream *OS, const Module* M = 0) const {
if (OS) print(*OS, M);
}
+ virtual void dump();
protected:
/// getNode - return the (Post)DominatorTree node for the specified basic
/// block. This is the same as using operator[] on this class.
@@ -467,6 +469,7 @@
void print(std::ostream *OS, const Module* M = 0) const {
if (OS) print(*OS, M);
}
+ virtual void dump();
};
More information about the llvm-commits
mailing list