From ff0e4a93416510eaac29ab780ab631dbeb81206a Mon Sep 17 00:00:00 2001
From: Ian Lance Taylor <ian@airs.com>
Date: Wed, 27 Mar 1996 22:23:18 +0000
Subject: Remove SEC_LINKER_MARK, and add a linker_mark bitfield to the
 asection structure instead.

---
 bfd/xcofflink.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

(limited to 'bfd/xcofflink.c')

diff --git a/bfd/xcofflink.c b/bfd/xcofflink.c
index ddb9cad..681e1e2 100644
--- a/bfd/xcofflink.c
+++ b/bfd/xcofflink.c
@@ -3221,7 +3221,7 @@ _bfd_xcoff_bfd_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)
@@ -4577,7 +4577,7 @@ xcoff_link_input_bfd (finfo, input_bfd)
     {
       bfd_byte *contents;
 
-      if ((o->flags & SEC_LINKER_MARK) == 0)
+      if (! o->linker_mark)
 	{
 	  /* This section was omitted from the link.  */
 	  continue;
-- 
cgit v1.1