Blame SOURCES/gdb-gnat-dwarf-crash-3of3.patch

7a6771
http://sourceware.org/ml/gdb-patches/2014-02/msg00731.html
7a6771
Subject: [patch] gdb_assert -> complaint for weird DWARF
7a6771
7a6771
7a6771
--6TrnltStXW4iwmi0
7a6771
Content-Type: text/plain; charset=us-ascii
7a6771
Content-Disposition: inline
7a6771
7a6771
Hi,
7a6771
7a6771
PR 16581:
7a6771
	GDB crash on inherit_abstract_dies infinite recursion
7a6771
	https://sourceware.org/bugzilla/show_bug.cgi?id=16581
7a6771
7a6771
fixed crash from an infinite recursion.  But in rare cases the new code can
7a6771
now gdb_assert() due to weird DWARF file.
7a6771
7a6771
I do not yet fully understand why the DWARF is as it is but just GDB should
7a6771
never crash due to invalid DWARF anyway.  The "invalid" DWARF I see only in
7a6771
Fedora GCC build, not in FSF GCC build, more info at:
7a6771
	https://bugzilla.redhat.com/show_bug.cgi?id=1069382
7a6771
	http://people.redhat.com/jkratoch/gcc-debuginfo-4.8.2-7.fc20.x86_64-gnatbind.debug
7a6771
7a6771
7a6771
Thanks,
7a6771
Jan
7a6771
7a6771
--6TrnltStXW4iwmi0
7a6771
Content-Type: text/plain; charset=us-ascii
7a6771
Content-Disposition: inline; filename="complaint.patch"
7a6771
7a6771
gdb/
7a6771
2014-02-24  Jan Kratochvil  <jan.kratochvil@redhat.com>
7a6771
7a6771
	* dwarf2read.c (process_die): Change gdb_assert to complaint.
7a6771
7a6771
diff --git a/gdb/dwarf2read.c b/gdb/dwarf2read.c
7a6771
index 3eaa0b1..71f5d34 100644
7a6771
--- a/gdb/dwarf2read.c
7a6771
+++ b/gdb/dwarf2read.c
7a6771
@@ -8029,7 +8029,13 @@ process_die (struct die_info *die, struct dwarf2_cu *cu)
7a6771
   struct cleanup *in_process;
7a6771
 
7a6771
   /* We should only be processing those not already in process.  */
7a6771
-  gdb_assert (!die->in_process);
7a6771
+  if (die->in_process)
7a6771
+    {
7a6771
+      complaint (&symfile_complaints,
7a6771
+		 _("DIE at 0x%x attempted to be processed twice"),
7a6771
+		 die->offset.sect_off);
7a6771
+      return;
7a6771
+    }
7a6771
 
7a6771
   die->in_process = 1;
7a6771
   in_process = make_cleanup (reset_die_in_process,die);
7a6771
7a6771
--6TrnltStXW4iwmi0--
7a6771