diff options
author | Ian Lance Taylor <ian@airs.com> | 1999-08-09 03:23:37 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1999-08-09 03:23:37 +0000 |
commit | 24c411edf7c60f7fe872c26d4017e98766f528fc (patch) | |
tree | 1392bcc187ed9a19b243c1c8f9a1d12acdda7943 | |
parent | 667f51773f576c8a43dfe10b96a1c5530f77b538 (diff) | |
download | gdb-24c411edf7c60f7fe872c26d4017e98766f528fc.zip gdb-24c411edf7c60f7fe872c26d4017e98766f528fc.tar.gz gdb-24c411edf7c60f7fe872c26d4017e98766f528fc.tar.bz2 |
* objdump.c (dump_section_header): Update for renaming of
SEC_SHORT to SEC_SMALL_DATA. Print SEC_SHARED flag.
-rw-r--r-- | binutils/ChangeLog | 3 | ||||
-rw-r--r-- | binutils/objdump.c | 3 |
2 files changed, 5 insertions, 1 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog index a69134b..082d020 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,5 +1,8 @@ 1999-08-08 Ian Lance Taylor <ian@zembu.com> + * objdump.c (dump_section_header): Update for renaming of + SEC_SHORT to SEC_SMALL_DATA. Print SEC_SHARED flag. + From Eli Zaretskii <eliz@gnu.org>: * binutils.texi: Document cxxfilt as MS-DOS name for c++filt. diff --git a/binutils/objdump.c b/binutils/objdump.c index 4cff97b..767d13f 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) { |