diff --git a/binutils/ChangeLog b/binutils/ChangeLog index a69134b7f43..082d0209ba9 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,5 +1,8 @@ 1999-08-08 Ian Lance Taylor + * objdump.c (dump_section_header): Update for renaming of + SEC_SHORT to SEC_SMALL_DATA. Print SEC_SHARED flag. + From Eli Zaretskii : * binutils.texi: Document cxxfilt as MS-DOS name for c++filt. diff --git a/binutils/objdump.c b/binutils/objdump.c index 4cff97b1e5a..767d13fd53d 100644 --- a/binutils/objdump.c +++ b/binutils/objdump.c @@ -329,7 +329,8 @@ 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"); + PF (SEC_SMALL_DATA, "SMALL_DATA"); + PF (SEC_SHARED, "SHARED"); if ((section->flags & SEC_LINK_ONCE) != 0) {