aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/llvm/Analysis/Dominators.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/llvm/Analysis/Dominators.h b/include/llvm/Analysis/Dominators.h
index e9c37a5..b03c020 100644
--- a/include/llvm/Analysis/Dominators.h
+++ b/include/llvm/Analysis/Dominators.h
@@ -199,6 +199,7 @@ public:
void print(std::ostream *OS, const Module* M = 0) const {
if (OS) print(*OS, M);
}
+ virtual void dump();
};
//===-------------------------------------
@@ -372,6 +373,7 @@ public:
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 @@ public:
void print(std::ostream *OS, const Module* M = 0) const {
if (OS) print(*OS, M);
}
+ virtual void dump();
};