Commit d8a6f584 by Jason Merrill Committed by Jason Merrill

* error.c (dump_type): Be more helpful about VECTOR_TYPE.

From-SVN: r49505
parent 2c79137a
2002-02-05 Jason Merrill <jason@redhat.com>
* error.c (dump_type): Be more helpful about VECTOR_TYPE.
2002-02-04 Jakub Jelinek <jakub@redhat.com>
* semantics.c (begin_switch_stmt): Clear SWITCH_TYPE.
......
......@@ -382,7 +382,14 @@ dump_type (t, flags)
case VECTOR_TYPE:
output_add_string (scratch_buffer, "vector ");
dump_type (TREE_TYPE (t), flags);
{
/* The subtype of a VECTOR_TYPE is something like intQI_type_node,
which has no name and is not very useful for diagnostics. So
look up the equivalent C type and print its name. */
tree elt = TREE_TYPE (t);
elt = type_for_mode (TYPE_MODE (elt), TREE_UNSIGNED (elt));
dump_type (elt, flags);
}
break;
case INTEGER_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