* ldlang.c (wild_doit): Update for renaming of SEC_SHORT to
authorIan Lance Taylor <ian@airs.com>
Mon, 9 Aug 1999 03:22:27 +0000 (03:22 +0000)
committerIan Lance Taylor <ian@airs.com>
Mon, 9 Aug 1999 03:22:27 +0000 (03:22 +0000)
SEC_SMALL_DATA.

ld/ChangeLog
ld/ldlang.c

index a69668e8450466e03ff942f0a29271f8a89381d3..5d808340cad4956fe8a0828f3d462a1d6867cc84 100644 (file)
@@ -1,5 +1,8 @@
 1999-08-08  Ian Lance Taylor  <ian@zembu.com>
 
+       * ldlang.c (wild_doit): Update for renaming of SEC_SHORT to
+       SEC_SMALL_DATA.
+
        * Makefile.am: Rename .dep* files to DEP*.  Change DEP variable to
        MKDEP.  Rebuild dependencies.
        * Makefile.in: Rebuild.
index eab4b5f6394f6fcb88fcc190c11cd4506b75891d..c447f6d29f38b356438a9e51bd21ecffb7eb32ac 100644 (file)
@@ -1108,9 +1108,9 @@ wild_doit (ptr, section, output, file)
          break;
        }
 
-      /* Copy over SEC_SHORT.  */
-      if (section->flags & SEC_SHORT)
-       section->output_section->flags |= SEC_SHORT;
+      /* Copy over SEC_SMALL_DATA.  */
+      if (section->flags & SEC_SMALL_DATA)
+       section->output_section->flags |= SEC_SMALL_DATA;
 
       if (section->alignment_power > output->bfd_section->alignment_power)
        output->bfd_section->alignment_power = section->alignment_power;