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

From-SVN: r88240
This commit is contained in:
Devang Patel 2004-09-28 10:52:59 -07:00 committed by Devang Patel
parent 1679340f35
commit 56bac5af0f
2 changed files with 11 additions and 1 deletions

View File

@ -1,3 +1,7 @@
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

View File

@ -331,7 +331,13 @@ dump_generic_node (pretty_printer *buffer, tree node, int spc, int flags,
&& DECL_NAME (TYPE_NAME (node)))
dump_decl_name (buffer, TYPE_NAME (node), flags);
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
pp_string (buffer, "<unnamed type>");