OSDN Git Service

gdb/
authorjkratoch <jkratoch>
Thu, 9 Sep 2010 04:49:28 +0000 (04:49 +0000)
committerjkratoch <jkratoch>
Thu, 9 Sep 2010 04:49:28 +0000 (04:49 +0000)
* dwarf2read.c (dwarf2_read_index): Return on no SEC_HAS_CONTENTS.

gdb/ChangeLog
gdb/dwarf2read.c

index 45eb3e7..71a63f0 100644 (file)
@@ -1,3 +1,7 @@
+2010-09-08  Jan Kratochvil  <jan.kratochvil@redhat.com>
+
+       * dwarf2read.c (dwarf2_read_index): Return on no SEC_HAS_CONTENTS.
+
 2010-09-08  Daniel Jacobowitz  <dan@codesourcery.com>
 
        * dwarf2read.c (read_structure_type): Move processing of
index b7d3b21..1379f72 100644 (file)
@@ -1904,6 +1904,13 @@ dwarf2_read_index (struct objfile *objfile)
   if (dwarf2_per_objfile->gdb_index.asection == NULL
       || dwarf2_per_objfile->gdb_index.size == 0)
     return 0;
+
+  /* Older elfutils strip versions could keep the section in the main
+     executable while splitting it for the separate debug info file.  */
+  if ((bfd_get_file_flags (dwarf2_per_objfile->gdb_index.asection)
+       & SEC_HAS_CONTENTS) == 0)
+    return 0;
+
   dwarf2_read_section (objfile, &dwarf2_per_objfile->gdb_index);
 
   addr = dwarf2_per_objfile->gdb_index.buffer;