aboutsummaryrefslogtreecommitdiff
path: root/gcc/dbxout.c
diff options
context:
space:
mode:
authorBernd Schmidt <bernds@cygnus.co.uk>2000-06-25 17:27:28 +0000
committerBernd Schmidt <crux@gcc.gnu.org>2000-06-25 17:27:28 +0000
commit4061f623a6ab220259c77be5f97617a05aa67d51 (patch)
tree522edcaf344f0a935b66520b90ff7de25127be81 /gcc/dbxout.c
parentf1ff439a50500c09c7f8016ca00dfe0bfd1109a2 (diff)
downloadgcc-4061f623a6ab220259c77be5f97617a05aa67d51.zip
gcc-4061f623a6ab220259c77be5f97617a05aa67d51.tar.gz
gcc-4061f623a6ab220259c77be5f97617a05aa67d51.tar.bz2
Vector support: type node creation & debugging support
From-SVN: r34696
Diffstat (limited to 'gcc/dbxout.c')
-rw-r--r--gcc/dbxout.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/gcc/dbxout.c b/gcc/dbxout.c
index f0b9860..b2ce424 100644
--- a/gcc/dbxout.c
+++ b/gcc/dbxout.c
@@ -1003,6 +1003,9 @@ dbxout_type (type, full, show_arg_types)
register tree tem;
static int anonymous_type_number = 0;
+ if (TREE_CODE (type) == VECTOR_TYPE)
+ type = TYPE_DEBUG_REPRESENTATION_TYPE (type);
+
/* If there was an input error and we don't really have a type,
avoid crashing and write something that is at least valid
by assuming `int'. */