From: Mark Kettenis Date: Thu, 17 May 2001 22:43:07 +0000 (+0200) Subject: * dwarf2out.c (modified_type_die): Equate qualified type to die. X-Git-Tag: prereleases/libstdc++-3.0.95~4394 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3d2999ba098e1a539dbab56331d1ed80773848a3;p=thirdparty%2Fgcc.git * dwarf2out.c (modified_type_die): Equate qualified type to die. From-SVN: r42227 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 1bd75c2f1b49..45ff600c8f4f 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +Thu May 17 19:42:39 2001 Mark Kettenis + + * dwarf2out.c (modified_type_die): Equate qualified type to die. + Thu May 17 23:19:46 CEST 2001 Jan Hubicka * integrate.c (copy_rtx_and_substitute): Use simplify_gen_subreg. diff --git a/gcc/dwarf2out.c b/gcc/dwarf2out.c index 570c87a9dd9b..6b825cf01a1a 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);