OSDN Git Service

(for COFF) default symbols to being local.
authorNick Clifton <nickc@redhat.com>
Tue, 27 Mar 2001 19:13:55 +0000 (19:13 +0000)
committerNick Clifton <nickc@redhat.com>
Tue, 27 Mar 2001 19:13:55 +0000 (19:13 +0000)
gas/ChangeLog
gas/read.c

index 93456eb..5cf8175 100644 (file)
@@ -1,3 +1,7 @@
+2001-03-27  Nick Papadonis  <nick@coelacanth.com>
+
+       * read.c (equals): (for COFF) default symbols to being local.
+
 2001-03-27  Hans-Peter Nilsson  <hp@axis.com>
 
        * configure.in (cris-*-*): Change default emulation to criself.
index 29ab155..cb4c7e3 100644 (file)
@@ -4863,6 +4863,12 @@ equals (sym_name, reassign)
          && S_IS_DEFINED (symbolP)
          && S_GET_SEGMENT (symbolP) != reg_section)
        as_bad (_("symbol `%s' already defined"), S_GET_NAME (symbolP));
+
+#ifdef OBJ_COFF
+      /* "set" symbols are local unless otherwise specified.  */
+      SF_SET_LOCAL (symbolP);
+#endif /* OBJ_COFF */
+
       pseudo_set (symbolP);
     }