dwarf2out.c (add_abstract_origin_attribute): Don't abort when the original die cannot be found.

* dwarf2out.c (add_abstract_origin_attribute): Don't abort when
	the original die cannot be found.

From-SVN: r30787
This commit is contained in:
Mark Mitchell 1999-12-05 17:51:50 +00:00
parent 53c9c5ea90
commit e6f696fc98

View file

@ -7503,7 +7503,7 @@ add_abstract_origin_attribute (die, origin)
origin_die = lookup_type_die (origin);
if (origin_die == NULL)
abort ();
return;
add_AT_die_ref (die, DW_AT_abstract_origin, origin_die);
}