dwarf2out.c (force_type_die): Look up input type itself instead of root_type() of type.

* dwarf2out.c (force_type_die): Look up input type itself
       instead of root_type() of type.

From-SVN: r77348
This commit is contained in:
Devang Patel 2004-02-05 15:02:54 -08:00 committed by Devang Patel
parent 1979678466
commit 9733d507ec
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2004-02-05 Devang Patel <dpatel@apple.com>
* dwarf2out.c (force_type_die): Look up input type itself
instead of root_type() of type.
2004-02-05 Andreas Krebbel <krebbel1@de.ibm.com>
* config/s390/s390.md ("*tmqidi_ext"): New insn.

View File

@ -11958,7 +11958,7 @@ force_type_die (tree type)
{
dw_die_ref type_die;
type_die = lookup_type_die (root_type (type));
type_die = lookup_type_die (type);
if (!type_die)
{
dw_die_ref context_die;
@ -11971,7 +11971,7 @@ force_type_die (tree type)
context_die = comp_unit_die;
gen_type_die (type, context_die);
type_die = lookup_type_die (root_type (type));
type_die = lookup_type_die (type);
if (!type_die)
abort();
}