diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1993-12-11 18:26:40 -0500 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1993-12-11 18:26:40 -0500 |
commit | f29a425b9100e64588eca2e0c1a01509bb546a5c (patch) | |
tree | cd327f943fe561cce086c94811533ad7e3c8cb92 | |
parent | 159e1f8430969d01dea16bb464475c06c064f1cb (diff) | |
download | gcc-f29a425b9100e64588eca2e0c1a01509bb546a5c.zip gcc-f29a425b9100e64588eca2e0c1a01509bb546a5c.tar.gz gcc-f29a425b9100e64588eca2e0c1a01509bb546a5c.tar.bz2 |
(output_type): The "base type" of a SET_TYPE is its DOMAIN_TYPE, not
its TREE_TYPE.
From-SVN: r6210
-rw-r--r-- | gcc/dwarfout.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/dwarfout.c b/gcc/dwarfout.c index 77b4297..48cce48 100644 --- a/gcc/dwarfout.c +++ b/gcc/dwarfout.c @@ -3994,7 +3994,7 @@ output_type (type, containing_scope) break; case SET_TYPE: - output_type (TREE_TYPE (type), containing_scope); + output_type (TYPE_DOMAIN (type), containing_scope); output_die (output_set_type_die, type); break; |