* dwarf.c (display_debug_frames): Skip the 'S' character in CFI

'z' augmentation strings.
This commit is contained in:
Jim Blandy 2010-02-08 19:27:34 +00:00
parent 19ef5f3d6d
commit d80e8de27f
2 changed files with 7 additions and 0 deletions

View 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

View 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++;