diff options
author | Jim Blandy <jimb@codesourcery.com> | 2010-02-08 19:27:34 +0000 |
---|---|---|
committer | Jim Blandy <jimb@codesourcery.com> | 2010-02-08 19:27:34 +0000 |
commit | d80e8de27fad4f09083d6b61332d2c9ab87c2079 (patch) | |
tree | 367343d3926bf7e94e7b976c95c2723a86eb2efe /binutils | |
parent | 19ef5f3d6db5d77a269bbb838e961ad8ab15a4eb (diff) | |
download | gdb-d80e8de27fad4f09083d6b61332d2c9ab87c2079.zip gdb-d80e8de27fad4f09083d6b61332d2c9ab87c2079.tar.gz gdb-d80e8de27fad4f09083d6b61332d2c9ab87c2079.tar.bz2 |
* dwarf.c (display_debug_frames): Skip the 'S' character in CFI
'z' augmentation strings.
Diffstat (limited to 'binutils')
-rw-r--r-- | binutils/ChangeLog | 5 | ||||
-rw-r--r-- | binutils/dwarf.c | 2 |
2 files changed, 7 insertions, 0 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog index 33bfd3e..8987c41 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -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 diff --git a/binutils/dwarf.c b/binutils/dwarf.c index 93eb15a..0e14332 100644 --- a/binutils/dwarf.c +++ b/binutils/dwarf.c @@ -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++; |