OSDN Git Service

1999-09-06 Donn Terry <donn@interix.com>
authorian <ian>
Tue, 7 Sep 1999 02:23:43 +0000 (02:23 +0000)
committerian <ian>
Tue, 7 Sep 1999 02:23:43 +0000 (02:23 +0000)
* as.c (perform_an_assembly_pass): Set SEC_DATA for data_section.

gas/ChangeLog
gas/as.c

index 401418e..b58667d 100644 (file)
@@ -1,3 +1,7 @@
+1999-09-06  Donn Terry  <donn@interix.com>
+
+       * as.c (perform_an_assembly_pass): Set SEC_DATA for data_section.
+
 Mon Sep  6 04:26:56 1999  Jeffrey A Law  (law@cygnus.com)
 
        * config/tc-hppa.c (pa_ip): Get strict/non-strict mode from the
index ef9ad10..59d9b83 100644 (file)
--- a/gas/as.c
+++ b/gas/as.c
@@ -950,9 +950,9 @@ perform_an_assembly_pass (argc, argv)
   bfd_set_section_flags (stdoutput, text_section,
                         applicable & (SEC_ALLOC | SEC_LOAD | SEC_RELOC
                                       | SEC_CODE | SEC_READONLY));
-  /* @@ FIXME -- SEC_CODE seems to mean code only, rather than code possibly.*/
   bfd_set_section_flags (stdoutput, data_section,
-                        applicable & (SEC_ALLOC | SEC_LOAD | SEC_RELOC));
+                        applicable & (SEC_ALLOC | SEC_LOAD | SEC_RELOC
+                                      | SEC_DATA));
   bfd_set_section_flags (stdoutput, bss_section, applicable & SEC_ALLOC);
   seg_info (bss_section)->bss = 1;
   subseg_new (BFD_ABS_SECTION_NAME, 0);