From e6f696fc9883d36d269592f0a33de5f3a70d59c1 Mon Sep 17 00:00:00 2001 From: Mark Mitchell Date: Sun, 5 Dec 1999 17:51:50 +0000 Subject: [PATCH] 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 --- gcc/dwarf2out.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/dwarf2out.c b/gcc/dwarf2out.c index 0b62deb6891..0a8846999fa 100644 --- a/gcc/dwarf2out.c +++ b/gcc/dwarf2out.c @@ -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); }