Browse Source

* ldlang.c (wild_doit): Update for renaming of SEC_SHORT to

SEC_SMALL_DATA.
gdb-premipsmulti-2000-06-06-branch
Ian Lance Taylor 27 years ago
parent
commit
667f51773f
  1. 3
      ld/ChangeLog
  2. 6
      ld/ldlang.c

3
ld/ChangeLog

@ -1,5 +1,8 @@
1999-08-08 Ian Lance Taylor <ian@zembu.com> 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 * Makefile.am: Rename .dep* files to DEP*. Change DEP variable to
MKDEP. Rebuild dependencies. MKDEP. Rebuild dependencies.
* Makefile.in: Rebuild. * Makefile.in: Rebuild.

6
ld/ldlang.c

@ -1108,9 +1108,9 @@ wild_doit (ptr, section, output, file)
break; break;
} }
/* Copy over SEC_SHORT. */ /* Copy over SEC_SMALL_DATA. */
if (section->flags & SEC_SHORT) if (section->flags & SEC_SMALL_DATA)
section->output_section->flags |= SEC_SHORT; section->output_section->flags |= SEC_SMALL_DATA;
if (section->alignment_power > output->bfd_section->alignment_power) if (section->alignment_power > output->bfd_section->alignment_power)
output->bfd_section->alignment_power = section->alignment_power; output->bfd_section->alignment_power = section->alignment_power;

Loading…
Cancel
Save