diff options
Diffstat (limited to 'binutils/objdump.c')
-rw-r--r-- | binutils/objdump.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/binutils/objdump.c b/binutils/objdump.c index 575a141..52cd3d0 100644 --- a/binutils/objdump.c +++ b/binutils/objdump.c @@ -299,6 +299,11 @@ dump_section_header (bfd *abfd, asection *section, char *comma = ""; unsigned int opb = bfd_octets_per_byte (abfd); + /* Ignore linker created section. See elfNN_ia64_object_p in + bfd/elfxx-ia64.c. */ + if (section->flags & SEC_LINKER_CREATED) + return; + printf ("%3d %-13s %08lx ", section->index, bfd_get_section_name (abfd, section), (unsigned long) bfd_section_size (abfd, section) / opb); |