* dwarf.c (display_debug_frames): Skip the 'S' character in CFI
authorJim Blandy <jimb@codesourcery.com>
Mon, 8 Feb 2010 19:27:34 +0000 (19:27 +0000)
committerJim Blandy <jimb@codesourcery.com>
Mon, 8 Feb 2010 19:27:34 +0000 (19:27 +0000)
'z' augmentation strings.

binutils/ChangeLog
binutils/dwarf.c

index 33bfd3ec26cb2d1a98fd8ee4fa94ae2e574ae859..8987c417537180fff19aec67230f37dc0ef941a8 100644 (file)
@@ -1,3 +1,8 @@
+2010-02-08  Jim Blandy  <jimb@red-bean.com>
+
+       * dwarf.c (display_debug_frames): Skip the 'S' character in CFI
+       'z' augmentation strings.
+
 2010-02-08  Christophe Lyon  <christophe.lyon@st.com>
 
        * objdump.c (disassemble_bytes): Clear aux->reloc before printing
index 93eb15a79bc11e2050d2e14adbe586adb079d6b9..0e143322712a952fdbf57b5a97cb57a0b62b788a 100644 (file)
@@ -4114,6 +4114,8 @@ display_debug_frames (struct dwarf_section *section,
                    q += 1 + size_of_encoded_value (*q);
                  else if (*p == 'R')
                    fc->fde_encoding = *q++;
+                 else if (*p == 'S')
+                   ;
                  else
                    break;
                  p++;