diff options
Diffstat (limited to 'binutils/readelf.c')
-rw-r--r-- | binutils/readelf.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/binutils/readelf.c b/binutils/readelf.c index a2f8505..7f64da3 100644 --- a/binutils/readelf.c +++ b/binutils/readelf.c @@ -2990,9 +2990,9 @@ usage (FILE * stream) Dump the contents of section <number|name> as strings\n\ -R --relocated-dump=<number|name>\n\ Dump the contents of section <number|name> as relocated bytes\n\ - -w[lLiaprmfFsoR] or\n\ + -w[lLiaprmfFsoRt] or\n\ --debug-dump[=rawline,=decodedline,=info,=abbrev,=pubnames,=aranges,=macro,=frames,\n\ - =frames-interp,=str,=loc,=Ranges]\n\ + =frames-interp,=str,=loc,=Ranges,=pubtypes]\n\ Display the contents of DWARF2 debug sections\n")); #ifdef SUPPORT_DISASSEMBLY fprintf (stream, _("\ @@ -4341,7 +4341,7 @@ process_section_headers (FILE * file) else if (section->sh_type == SHT_RELA) CHECK_ENTSIZE (section, i, Rela); else if ((do_debugging || do_debug_info || do_debug_abbrevs - || do_debug_lines || do_debug_pubnames + || do_debug_lines || do_debug_pubnames || do_debug_pubtypes || do_debug_aranges || do_debug_frames || do_debug_macinfo || do_debug_str || do_debug_loc || do_debug_ranges) && (const_strneq (name, ".debug_") @@ -4358,6 +4358,7 @@ process_section_headers (FILE * file) || (do_debug_abbrevs && streq (name, "abbrev")) || (do_debug_lines && streq (name, "line")) || (do_debug_pubnames && streq (name, "pubnames")) + || (do_debug_pubtypes && streq (name, "pubtypes")) || (do_debug_aranges && streq (name, "aranges")) || (do_debug_ranges && streq (name, "ranges")) || (do_debug_frames && streq (name, "frame")) |