* tree-pretty-print.c (dump_generic_node): Print vector types.
From-SVN: r88240
This commit is contained in:
parent
1679340f35
commit
56bac5af0f
@ -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
|
||||
|
@ -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>");
|
||||
|
Loading…
Reference in New Issue
Block a user