aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Kenner <kenner@gcc.gnu.org>1993-12-11 18:09:38 -0500
committerRichard Kenner <kenner@gcc.gnu.org>1993-12-11 18:09:38 -0500
commit159e1f8430969d01dea16bb464475c06c064f1cb (patch)
tree1f6dc2753be5211cc09ff8c3ae57803a75522e0f
parent9b1674a8ed5fe2cbc63ffd6b47d1ae335f5562dd (diff)
downloadgcc-159e1f8430969d01dea16bb464475c06c064f1cb.zip
gcc-159e1f8430969d01dea16bb464475c06c064f1cb.tar.gz
gcc-159e1f8430969d01dea16bb464475c06c064f1cb.tar.bz2
(dbxout_type): The "base type" of a SET_TYPE is its DOMAIN_TYPE, not
its TREE_TYPE. From-SVN: r6209
-rw-r--r--gcc/dbxout.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/dbxout.c b/gcc/dbxout.c
index a952af5..08881fc 100644
--- a/gcc/dbxout.c
+++ b/gcc/dbxout.c
@@ -1100,7 +1100,7 @@ dbxout_type (type, full, show_arg_types)
case SET_TYPE:
putc ('S', asmfile);
CHARS (1);
- dbxout_type (TREE_TYPE (type), 0, 0);
+ dbxout_type (TYPE_DOMAIN (type), 0, 0);
break;
case ARRAY_TYPE: