Commit e6f696fc by Mark Mitchell

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
parent 53c9c5ea
...@@ -7503,7 +7503,7 @@ add_abstract_origin_attribute (die, origin) ...@@ -7503,7 +7503,7 @@ add_abstract_origin_attribute (die, origin)
origin_die = lookup_type_die (origin); origin_die = lookup_type_die (origin);
if (origin_die == NULL) if (origin_die == NULL)
abort (); return;
add_AT_die_ref (die, DW_AT_abstract_origin, origin_die); add_AT_die_ref (die, DW_AT_abstract_origin, origin_die);
} }
......
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