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> 2004-09-28 Nick Clifton <nickc@redhat.com>
* config/sh/sh.h (INIT_CUMULATIVE_ARGS): Replace with an * config/sh/sh.h (INIT_CUMULATIVE_ARGS): Replace with an
......
...@@ -331,7 +331,13 @@ dump_generic_node (pretty_printer *buffer, tree node, int spc, int flags, ...@@ -331,7 +331,13 @@ dump_generic_node (pretty_printer *buffer, tree node, int spc, int flags,
&& DECL_NAME (TYPE_NAME (node))) && DECL_NAME (TYPE_NAME (node)))
dump_decl_name (buffer, TYPE_NAME (node), flags); dump_decl_name (buffer, TYPE_NAME (node), flags);
else else
pp_string (buffer, "<unnamed type>"); 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 else
pp_string (buffer, "<unnamed type>"); 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