diff options
Diffstat (limited to 'binutils')
-rw-r--r-- | binutils/ChangeLog | 4 | ||||
-rw-r--r-- | binutils/objdump.c | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog index f68bfd9..4eb99da 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,7 @@ +1999-07-14 Richard Henderson <rth@cygnus.com> + + * objdump.c (dump_section_header): Print SEC_SHORT. + 1999-07-11 Ian Lance Taylor <ian@zembu.com> * Many files: Changes to avoid gcc warnings: Add ATTRIBUTE_UNUSED diff --git a/binutils/objdump.c b/binutils/objdump.c index 1cd5fb6..4cff97b 100644 --- a/binutils/objdump.c +++ b/binutils/objdump.c @@ -329,6 +329,7 @@ dump_section_header (abfd, section, ignored) PF (SEC_NEVER_LOAD, "NEVER_LOAD"); PF (SEC_EXCLUDE, "EXCLUDE"); PF (SEC_SORT_ENTRIES, "SORT_ENTRIES"); + PF (SEC_SHORT, "SHORT"); if ((section->flags & SEC_LINK_ONCE) != 0) { |