aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Mitchell <mmitchel@gcc.gnu.org>1999-12-05 17:51:50 +0000
committerMark Mitchell <mmitchel@gcc.gnu.org>1999-12-05 17:51:50 +0000
commite6f696fc9883d36d269592f0a33de5f3a70d59c1 (patch)
treeb1161d6faac88ab88aae4f0fef932b6a0d0f7a66
parent53c9c5ea90786b16ce5175c7d2a8319a27182c8a (diff)
downloadgcc-e6f696fc9883d36d269592f0a33de5f3a70d59c1.zip
gcc-e6f696fc9883d36d269592f0a33de5f3a70d59c1.tar.gz
gcc-e6f696fc9883d36d269592f0a33de5f3a70d59c1.tar.bz2
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
-rw-r--r--gcc/dwarf2out.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/dwarf2out.c b/gcc/dwarf2out.c
index 0b62deb..0a88469 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);
}