Commit 9733d507 by Devang Patel Committed by Devang Patel

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
parent 19796784
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.
......
......@@ -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();
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment