Add dump() to DominanceFrontier
[oota-llvm.git] / include / llvm / Analysis / Dominators.h
index 1979d3f6820bcf76106c7c214edf659d1968035c..f79afdd1e9c959b026ed5168f0af7f933753aee6 100644 (file)
@@ -995,6 +995,9 @@ public:
   /// print - Convert to human readable form
   ///
   virtual void print(raw_ostream &OS, const Module* = 0) const;
+
+  /// dump - Dump the dominance frontier to dbgs().
+  void dump() const;
 };