aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Kettenis <kettenis@wins.uva.nl>2001-05-18 00:43:07 +0200
committerAlexandre Oliva <aoliva@gcc.gnu.org>2001-05-17 22:43:07 +0000
commit3d2999ba098e1a539dbab56331d1ed80773848a3 (patch)
treeae5e2e2e454357f77689602c8a1b5c9b06dd00d3
parent754ad41da6fd1fc732db6130fd52fd120e447dc1 (diff)
downloadgcc-3d2999ba098e1a539dbab56331d1ed80773848a3.zip
gcc-3d2999ba098e1a539dbab56331d1ed80773848a3.tar.gz
gcc-3d2999ba098e1a539dbab56331d1ed80773848a3.tar.bz2
* dwarf2out.c (modified_type_die): Equate qualified type to die.
From-SVN: r42227
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/dwarf2out.c4
2 files changed, 8 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 1bd75c2..45ff600 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,7 @@
+Thu May 17 19:42:39 2001 Mark Kettenis <kettenis@wins.uva.nl>
+
+ * dwarf2out.c (modified_type_die): Equate qualified type to die.
+
Thu May 17 23:19:46 CEST 2001 Jan Hubicka <jh@suse.cz>
* integrate.c (copy_rtx_and_substitute): Use simplify_gen_subreg.
diff --git a/gcc/dwarf2out.c b/gcc/dwarf2out.c
index 570c87a..6b825cf 100644
--- a/gcc/dwarf2out.c
+++ b/gcc/dwarf2out.c
@@ -6982,6 +6982,10 @@ modified_type_die (type, is_const_type, is_volatile_type, context_die)
if (mod_type_die == NULL)
abort ();
}
+
+ /* We want to equate the qualified type to the die below. */
+ if (qualified_type)
+ type = qualified_type;
}
equate_type_number_to_die (type, mod_type_die);