Commit 56bac5af by Devang Patel Committed by Devang Patel

* tree-pretty-print.c (dump_generic_node): Print vector types.

From-SVN: r88240
parent 1679340f
2004-09-28 Devang Patel <dpatel@apple.com>
* tree-pretty-print.c (dump_generic_node): Print vector types.
2004-09-28 Nick Clifton <nickc@redhat.com>
* config/sh/sh.h (INIT_CUMULATIVE_ARGS): Replace with an
......
......@@ -333,6 +333,12 @@ dump_generic_node (pretty_printer *buffer, tree node, int spc, int flags,
else
pp_string (buffer, "<unnamed type>");
}
else if (TREE_CODE (node) == VECTOR_TYPE)
{
pp_string (buffer, "vector ");
dump_generic_node (buffer, TREE_TYPE (node),
spc, flags, false);
}
else
pp_string (buffer, "<unnamed type>");
}
......
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