binutils/
authorJan Kratochvil <jan.kratochvil@redhat.com>
Wed, 26 Jan 2011 10:27:46 +0000 (10:27 +0000)
committerJan Kratochvil <jan.kratochvil@redhat.com>
Wed, 26 Jan 2011 10:27:46 +0000 (10:27 +0000)
* dwarf.c (display_gdb_index): Support version 4, warn on version 3.

binutils/ChangeLog
binutils/dwarf.c

index d02f458..bab4756 100644 (file)
@@ -1,3 +1,8 @@
+2011-01-26  Jan Kratochvil  <jan.kratochvil@redhat.com>
+           Doug Evans  <dje@google.com>
+
+       * dwarf.c (display_gdb_index): Support version 4, warn on version 3.
+
 2011-01-19  Maciej W. Rozycki  <macro@codesourcery.com>
 
        * readelf.c (process_object): Free dynamic_section after use.
index 6d1b65b..2337c53 100644 (file)
@@ -4893,8 +4893,14 @@ display_gdb_index (struct dwarf_section *section,
 
   /* Prior versions are obsolete, and future versions may not be
      backwards compatible.  */
-  if (version != 3)
+  switch (version)
     {
+    case 3:
+      warn (_("The address table data in version 3 may be wrong.\n"));
+      break;
+    case 4:
+      break;
+    default:
       warn (_("Unsupported version %lu.\n"), (unsigned long) version);
       return 0;
     }