Set the debug flag for storage types C_ARG, C_REGPARM, C_FIELD, C_MOS, C_MOE,
authorNick Clifton <nickc@redhat.com>
Mon, 14 Aug 2000 19:41:40 +0000 (19:41 +0000)
committerNick Clifton <nickc@redhat.com>
Mon, 14 Aug 2000 19:41:40 +0000 (19:41 +0000)
C_MOU, and C_EOS.

gas/ChangeLog
gas/config/obj-coff.c

index c24f431..e3871b7 100644 (file)
@@ -1,3 +1,9 @@
+2000-08-14  Mark Elbrecht  <snowball3@bigfoot.com>
+
+       * config/obj-coff.c (obj_coff_endef) [BFD_ASSEMBLER]: Set the debug
+         flag for storage types C_ARG, C_REGPARM, C_FIELD, C_MOS, C_MOE,
+         C_MOU, and C_EOS.
+
 2000-08-14  Jason Eckhardt  <jle@cygnus.com>
 
        * NEWS: Mention i860 support.
index 935e3f2..3951fc4 100644 (file)
@@ -732,14 +732,11 @@ obj_coff_endef (ignore)
     case C_ARG:
     case C_REGPARM:
     case C_FIELD:
-      SF_SET_DEBUG (def_symbol_in_progress);
-      S_SET_SEGMENT (def_symbol_in_progress, absolute_section);
-      break;
-
     case C_MOS:
     case C_MOE:
     case C_MOU:
     case C_EOS:
+      SF_SET_DEBUG (def_symbol_in_progress);
       S_SET_SEGMENT (def_symbol_in_progress, absolute_section);
       break;