From 661f7c357e34dee7936489da7a385c29a1343d02 Mon Sep 17 00:00:00 2001 From: Nick Clifton Date: Mon, 4 Apr 2005 10:32:28 +0000 Subject: [PATCH] Add a check to see if the section for the symbol is chosen using process_section_p. --- binutils/ChangeLog | 6 ++++++ binutils/objdump.c | 6 ++++-- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/binutils/ChangeLog b/binutils/ChangeLog index 4bd54d8b5c..51b5accb7c 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,9 @@ +2005-04-04 Ramana Radhakrishnan + + PR binutils/813 + * objdump.c (dump_symbols): Add a check to see if the section for + the symbol is chosen using process_section_p. + 2005-04-01 H.J. Lu * NEWS: Mention new readelf options, "-N/--full-section-name" diff --git a/binutils/objdump.c b/binutils/objdump.c index 9940242529..a12d95d698 100644 --- a/binutils/objdump.c +++ b/binutils/objdump.c @@ -2345,8 +2345,9 @@ dump_symbols (bfd *abfd ATTRIBUTE_UNUSED, bfd_boolean dynamic) printf (_("could not determine the type of symbol number %ld\n"), count); - else if (dump_special_syms - || !bfd_is_target_special_symbol (cur_bfd, *current)) + else if (process_section_p ((* current)->section) + && (dump_special_syms + || !bfd_is_target_special_symbol (cur_bfd, *current))) { const char *name = (*current)->name; @@ -2369,6 +2370,7 @@ dump_symbols (bfd *abfd ATTRIBUTE_UNUSED, bfd_boolean dynamic) bfd_print_symbol_all); printf ("\n"); } + current++; } printf ("\n\n"); -- 2.34.1