From 24c411edf7c60f7fe872c26d4017e98766f528fc Mon Sep 17 00:00:00 2001 From: Ian Lance Taylor Date: Mon, 9 Aug 1999 03:23:37 +0000 Subject: [PATCH] * objdump.c (dump_section_header): Update for renaming of SEC_SHORT to SEC_SMALL_DATA. Print SEC_SHARED flag. --- binutils/ChangeLog | 3 +++ binutils/objdump.c | 3 ++- 2 files changed, 5 insertions(+), 1 deletion(-) 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 + * 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 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) { -- 2.7.4