diff options
author | Dan Gohman <gohman@apple.com> | 2010-01-15 22:22:58 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2010-01-15 22:22:58 +0000 |
commit | cb8544fb9e89787f876c37fd1d81ee6c80a10fb5 (patch) | |
tree | 9866179e1ea2e108b85dfb6c0f24e125c95bfc08 /include/llvm/CodeGen/SelectionDAGNodes.h | |
parent | 23cdb0bdcf8e7ded8ee5017592b6face579a2a7f (diff) |
Add comments to the dump() and dumpr() routines.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@93566 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen/SelectionDAGNodes.h')
-rw-r--r-- | include/llvm/CodeGen/SelectionDAGNodes.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/llvm/CodeGen/SelectionDAGNodes.h b/include/llvm/CodeGen/SelectionDAGNodes.h index b60e2f2a31..964b498915 100644 --- a/include/llvm/CodeGen/SelectionDAGNodes.h +++ b/include/llvm/CodeGen/SelectionDAGNodes.h @@ -1297,9 +1297,17 @@ public: /// void printWithFullDepth(raw_ostream &O, const SelectionDAG *G = 0, unsigned indent = 0) const; + /// dump - Dump this node, for debugging. void dump() const; + /// dumpr - Dump (recursively) this node and its use-def subgraph. void dumpr() const; + /// dump - Dump this node, for debugging. + /// The given SelectionDAG allows target-specific nodes to be printed + /// in human-readable form. void dump(const SelectionDAG *G) const; + /// dumpr - Dump (recursively) this node and its use-def subgraph. + /// The given SelectionDAG allows target-specific nodes to be printed + /// in human-readable form. void dumpr(const SelectionDAG *G) const; /// dumpWithDepth - printWithDepth to dbgs(). /// |