system.h (SHARED_BSS_SECTION_ASM_OP): Poison.
authorKazu Hirata <kazu@cs.umass.edu>
Wed, 14 Jan 2004 00:49:05 +0000 (00:49 +0000)
committerKazu Hirata <kazu@gcc.gnu.org>
Wed, 14 Jan 2004 00:49:05 +0000 (00:49 +0000)
* system.h (SHARED_BSS_SECTION_ASM_OP): Poison.
* varasm.c (bss_section): Don't use SHARED_BSS_SECTION_ASM_OP.
* doc/tm.texi (SHARED_BSS_SECTION_ASM_OP): Remove.

From-SVN: r75832

gcc/ChangeLog
gcc/doc/tm.texi
gcc/system.h
gcc/varasm.c

index 5794b117deb53e52a1fe2256d062738a38e6f7c9..70a97fc40e943c7da9a2e2cc82636efdac07d724 100644 (file)
@@ -1,3 +1,9 @@
+2004-01-13  Kazu Hirata  <kazu@cs.umass.edu>
+
+       * system.h (SHARED_BSS_SECTION_ASM_OP): Poison.
+       * varasm.c (bss_section): Don't use SHARED_BSS_SECTION_ASM_OP.
+       * doc/tm.texi (SHARED_BSS_SECTION_ASM_OP): Remove.
+
 2004-01-14  Jan Hubicka  <jh@suse.cz>
 
        Partial fix PR c++/12850
index ea6741ded644534965f5ec1a0e555526a41c8a69..e1f23673e96b6b524544cb04da7987a48b20e20f 100644 (file)
@@ -5785,13 +5785,6 @@ uninitialized global data will be output in the data section if
 used.
 @end defmac
 
-@defmac SHARED_BSS_SECTION_ASM_OP
-If defined, a C expression whose value is a string, including spacing,
-containing the assembler operation to identify the following data as
-uninitialized global shared data.  If not defined, and
-@code{BSS_SECTION_ASM_OP} is, the latter will be used.
-@end defmac
-
 @defmac INIT_SECTION_ASM_OP
 If defined, a C expression whose value is a string, including spacing,
 containing the assembler operation to identify the following data as
index 82c44e868c65fe103477f433671cec4e3386fd67..dc939697c93c52c19253bb08e3e78d3cad31ce32 100644 (file)
@@ -622,7 +622,7 @@ typedef char _Bool;
        LIBGCC_NEEDS_DOUBLE FINAL_PRESCAN_LABEL DEFAULT_CALLER_SAVES       \
        LOAD_ARGS_REVERSED MAX_INTEGER_COMPUTATION_MODE                    \
        CONVERT_HARD_REGISTER_TO_SSA_P ASM_OUTPUT_MAIN_SOURCE_FILENAME     \
-       FIRST_INSN_ADDRESS TEXT_SECTION
+       FIRST_INSN_ADDRESS TEXT_SECTION SHARED_BSS_SECTION_ASM_OP
 
 /* Hooks that are no longer used.  */
  #pragma GCC poison LANG_HOOKS_FUNCTION_MARK LANG_HOOKS_FUNCTION_FREE  \
index 1efe09761e87758584fd76bcdb8708eac3b608ee..e44d288dbc882b15f228fe33e32b2228026fc26d 100644 (file)
@@ -459,13 +459,7 @@ bss_section (void)
 {
   if (in_section != in_bss)
     {
-#ifdef SHARED_BSS_SECTION_ASM_OP
-      if (flag_shared_data)
-       fprintf (asm_out_file, "%s\n", SHARED_BSS_SECTION_ASM_OP);
-      else
-#endif
-       fprintf (asm_out_file, "%s\n", BSS_SECTION_ASM_OP);
-
+      fprintf (asm_out_file, "%s\n", BSS_SECTION_ASM_OP);
       in_section = in_bss;
     }
 }