* objdump.c (dump_section_header): Update for renaming of
authorIan Lance Taylor <ian@airs.com>
Mon, 9 Aug 1999 03:23:37 +0000 (03:23 +0000)
committerIan Lance Taylor <ian@airs.com>
Mon, 9 Aug 1999 03:23:37 +0000 (03:23 +0000)
SEC_SHORT to SEC_SMALL_DATA.  Print SEC_SHARED flag.

binutils/ChangeLog
binutils/objdump.c

index a69134b7f43e71b14802131166c9d813b38ee1c6..082d0209ba989b4b1a3f61aa942b1bbd658a18b5 100644 (file)
@@ -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.
 
index 4cff97b1e5a6d3f7443bbf0c8c08c31bb98e0cea..767d13fd53dedda01fb6f198111cc2f27a4b36ad 100644 (file)
@@ -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)
     {
This page took 0.032462 seconds and 4 git commands to generate.