From 159e1f8430969d01dea16bb464475c06c064f1cb Mon Sep 17 00:00:00 2001 From: Richard Kenner Date: Sat, 11 Dec 1993 18:09:38 -0500 Subject: (dbxout_type): The "base type" of a SET_TYPE is its DOMAIN_TYPE, not its TREE_TYPE. From-SVN: r6209 --- gcc/dbxout.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gcc') 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: -- cgit v1.1