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 | 8ea3acbb3d9ede05fbb543d1f310e40c92b26d46 (patch) | |
| tree | 96080c7317c24d062a0a9f15f8fa1918e8cac042 /llvm/include | |
| parent | 188fa96cf9dccef6aadbbdb53e6e35157940e332 (diff) | |
| download | bcm5719-llvm-8ea3acbb3d9ede05fbb543d1f310e40c92b26d46.tar.gz bcm5719-llvm-8ea3acbb3d9ede05fbb543d1f310e40c92b26d46.zip | |
Add comments to the dump() and dumpr() routines.
llvm-svn: 93566
Diffstat (limited to 'llvm/include')
| -rw-r--r-- | llvm/include/llvm/CodeGen/SelectionDAGNodes.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/llvm/include/llvm/CodeGen/SelectionDAGNodes.h b/llvm/include/llvm/CodeGen/SelectionDAGNodes.h index b60e2f2a31f..964b4989152 100644 --- a/llvm/include/llvm/CodeGen/SelectionDAGNodes.h +++ b/llvm/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(). /// |

