diff options
author | Ian Lance Taylor <ian@airs.com> | 1996-03-27 22:23:18 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1996-03-27 22:23:18 +0000 |
commit | ff0e4a93416510eaac29ab780ab631dbeb81206a (patch) | |
tree | 538940f60249f08cc085d9762546aa5708dd4963 /bfd/coff-ppc.c | |
parent | 9addd1d4fdf2514723a9d847271cd546a3d0f207 (diff) | |
download | binutils-ff0e4a93416510eaac29ab780ab631dbeb81206a.zip binutils-ff0e4a93416510eaac29ab780ab631dbeb81206a.tar.gz binutils-ff0e4a93416510eaac29ab780ab631dbeb81206a.tar.bz2 |
Remove SEC_LINKER_MARK, and add a linker_mark bitfield to the asection
structure instead.
Diffstat (limited to 'bfd/coff-ppc.c')
-rw-r--r-- | bfd/coff-ppc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bfd/coff-ppc.c b/bfd/coff-ppc.c index a991fe6..99c3d28 100644 --- a/bfd/coff-ppc.c +++ b/bfd/coff-ppc.c @@ -2762,7 +2762,7 @@ ppc_bfd_coff_final_link (abfd, info) link. This will normally be every section. We need to do this so that we can identify any sections which the linker has decided to not include. */ - sec->flags |= SEC_LINKER_MARK; + sec->linker_mark = true; if (info->strip == strip_none || info->strip == strip_some) |