diff options
author | Bill Wendling <isanbard@gmail.com> | 2006-11-28 23:31:42 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2006-11-28 23:31:42 +0000 |
commit | d96662360f49f9b94d0faa7ea8dba8582bc1b364 (patch) | |
tree | b372456f8d5b78c0b763666f3dd19cefb5c94c55 /include/llvm/Analysis/DataStructure | |
parent | f45148e113a213b8c91ce34a0b16aa35eb30c77a (diff) |
Support for llvm_ostreams.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@31988 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Analysis/DataStructure')
-rw-r--r-- | include/llvm/Analysis/DataStructure/DSGraph.h | 5 | ||||
-rw-r--r-- | include/llvm/Analysis/DataStructure/DSNode.h | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/include/llvm/Analysis/DataStructure/DSGraph.h b/include/llvm/Analysis/DataStructure/DSGraph.h index eb4388b6ad..61853587d7 100644 --- a/include/llvm/Analysis/DataStructure/DSGraph.h +++ b/include/llvm/Analysis/DataStructure/DSGraph.h @@ -378,9 +378,12 @@ public: /// print - Print a dot graph to the specified ostream... /// + void print(llvm_ostream &O) const { + if (O.stream()) print(*O.stream()); + } void print(std::ostream &O) const; - /// dump - call print(std::cerr), for use from the debugger... + /// dump - call print(llvm_cerr), for use from the debugger... /// void dump() const; diff --git a/include/llvm/Analysis/DataStructure/DSNode.h b/include/llvm/Analysis/DataStructure/DSNode.h index 45937a4106..5eb927b90e 100644 --- a/include/llvm/Analysis/DataStructure/DSNode.h +++ b/include/llvm/Analysis/DataStructure/DSNode.h @@ -362,6 +362,9 @@ public: /// void forwardNode(DSNode *To, unsigned Offset); + void print(llvm_ostream &O, const DSGraph *G) const { + if (O.stream()) print(*O.stream(), G); + } void print(std::ostream &O, const DSGraph *G) const; void dump() const; |