gdb/
authorJan Kratochvil <jan.kratochvil@redhat.com>
Tue, 18 Jun 2013 15:50:33 +0000 (15:50 +0000)
committerJan Kratochvil <jan.kratochvil@redhat.com>
Tue, 18 Jun 2013 15:50:33 +0000 (15:50 +0000)
* dwarf2read.c (write_psymtabs_to_index): Ignore NULL PSYMTAB.

gdb/ChangeLog
gdb/dwarf2read.c

index 8a291ac4fa1c880ac7c08fd8209376d40cd36e47..1743bfa1403e77989be1aaa70b31d53ff662ab76 100644 (file)
@@ -1,3 +1,7 @@
+2013-06-18  Jan Kratochvil  <jan.kratochvil@redhat.com>
+
+       * dwarf2read.c (write_psymtabs_to_index): Ignore NULL PSYMTAB.
+
 2013-06-17  Pierre Muller  <muller@sourceware.org>
 
        * corelow.c (core_open): Print GDB signal name instead of target
index a902b70fd0166df2d164abed9a2673021f034b65..316bb861c007d51ceac8cb9e637d6594b1261c8c 100644 (file)
@@ -21270,6 +21270,12 @@ write_psymtabs_to_index (struct objfile *objfile, const char *dir)
       struct psymtab_cu_index_map *map;
       void **slot;
 
+      /* CU of a shared file from 'dwz -m' may be unused by this main file.
+        It may be referenced from a local scope but in such case it does not
+        need to be present in .gdb_index.  */
+      if (psymtab == NULL)
+       continue;
+
       if (psymtab->user == NULL)
        recursively_write_psymbols (objfile, psymtab, symtab, psyms_seen, i);