Skip to content
Snippets Groups Projects
Commit 8ea3acbb authored by Dan Gohman's avatar Dan Gohman
Browse files

Add comments to the dump() and dumpr() routines.

llvm-svn: 93566
parent 188fa96c
No related branches found
No related tags found
No related merge requests found
......@@ -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().
///
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment