Commit 3a4219ca by Jason Merrill Committed by Jason Merrill

* ptree.c (debug_tree): Implement for cp_expr.

From-SVN: r233276
parent cdc23927
2016-02-10 Jason Merrill <jason@redhat.com>
* ptree.c (debug_tree): Implement for cp_expr.
2016-02-08 Patrick Palka <ppalka@gcc.gnu.org>
PR c++/69139
......
......@@ -287,3 +287,11 @@ cxx_print_xnode (FILE *file, tree node, int indent)
break;
}
}
/* Print the node NODE on standard error, for debugging. */
DEBUG_FUNCTION void
debug_tree (cp_expr node)
{
debug_tree (node.get_value());
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment