diff options
author | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1993-12-11 23:26:40 +0000 |
---|---|---|
committer | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1993-12-11 23:26:40 +0000 |
commit | 37651f708e2e53ae13cce1f098c82c63eb95ddbd (patch) | |
tree | cd327f943fe561cce086c94811533ad7e3c8cb92 /gcc/dwarfout.c | |
parent | b92ab1e12d21231c725891c8cc553af894bb2607 (diff) | |
download | gcc-37651f708e2e53ae13cce1f098c82c63eb95ddbd.tar.gz |
(output_type): The "base type" of a SET_TYPE is its DOMAIN_TYPE, not
its TREE_TYPE.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@6210 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/dwarfout.c')
-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 77b4297e0df..48cce48b89a 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; |