summaryrefslogtreecommitdiff
path: root/binutils/dwarf.c
diff options
context:
space:
mode:
authorJim Blandy <jimb@codesourcery.com>2010-02-08 19:27:34 +0000
committerJim Blandy <jimb@codesourcery.com>2010-02-08 19:27:34 +0000
commitd80e8de27fad4f09083d6b61332d2c9ab87c2079 (patch)
tree367343d3926bf7e94e7b976c95c2723a86eb2efe /binutils/dwarf.c
parent19ef5f3d6db5d77a269bbb838e961ad8ab15a4eb (diff)
downloadbinutils-gdb-d80e8de27fad4f09083d6b61332d2c9ab87c2079.tar.gz
* dwarf.c (display_debug_frames): Skip the 'S' character in CFI
'z' augmentation strings.
Diffstat (limited to 'binutils/dwarf.c')
-rw-r--r--binutils/dwarf.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/binutils/dwarf.c b/binutils/dwarf.c
index 93eb15a79bc..0e143322712 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++;