diff options
Diffstat (limited to 'contrib/gcc/tree-pretty-print.c')
-rw-r--r-- | contrib/gcc/tree-pretty-print.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/contrib/gcc/tree-pretty-print.c b/contrib/gcc/tree-pretty-print.c index 5ce495b..fdd9ff5 100644 --- a/contrib/gcc/tree-pretty-print.c +++ b/contrib/gcc/tree-pretty-print.c @@ -1443,6 +1443,17 @@ dump_generic_node (pretty_printer *buffer, tree node, int spc, int flags, is_expr = false; break; + case CHANGE_DYNAMIC_TYPE_EXPR: + pp_string (buffer, "<<<change_dynamic_type ("); + dump_generic_node (buffer, CHANGE_DYNAMIC_TYPE_NEW_TYPE (node), spc + 2, + flags, false); + pp_string (buffer, ") "); + dump_generic_node (buffer, CHANGE_DYNAMIC_TYPE_LOCATION (node), spc + 2, + flags, false); + pp_string (buffer, ")>>>"); + is_expr = false; + break; + case LABEL_EXPR: op0 = TREE_OPERAND (node, 0); /* If this is for break or continue, don't bother printing it. */ |