varasm.c (asm_output_bss): New argument DECL.
authorDoug Evans <dje@gnu.org>
Fri, 24 May 1996 16:32:25 +0000 (16:32 +0000)
committerDoug Evans <dje@gnu.org>
Fri, 24 May 1996 16:32:25 +0000 (16:32 +0000)
* varasm.c (asm_output_bss): New argument DECL.
Use ASM_DECLARE_OBJECT_NAME if defined.
(asm_output_aligned_bss): Likewise.
(assemble_variable): Pass DECL to ASM_OUTPUT{,_ALIGNED}_BSS.
* m68k/m68k-aout.h (ASM_OUTPUT_BSS): Update.

From-SVN: r12094

gcc/config/m68k/m68k-aout.h

index f947a9f989978b2e97a8153c5f4ec612112683c8..b65f9fefcd1ea409372a5a8d1361c92cfa8655ee 100644 (file)
@@ -34,11 +34,11 @@ Boston, MA 02111-1307, USA.  */
 #define BSS_SECTION_ASM_OP "\t.bss"
 
 /* A C statement (sans semicolon) to output to the stdio stream
-   FILE the assembler definition of an uninitialized global label named
+   FILE the assembler definition of uninitialized global DECL named
    NAME whose size is SIZE bytes.  The variable ROUNDED
    is the size rounded up to whatever alignment the caller wants.
    Try to use asm_output_bss to implement this macro.  */
 /* a.out files typically can't handle arbitrary variable alignments so
    define ASM_OUTPUT_BSS instead of ASM_OUTPUT_ALIGNED_BSS.  */
-#define ASM_OUTPUT_BSS(FILE, NAME, SIZE, ROUNDED) \
-  asm_output_bss ((FILE), (NAME), (SIZE), (ROUNDED))
+#define ASM_OUTPUT_BSS(FILE, DECL, NAME, SIZE, ROUNDED) \
+  asm_output_bss ((FILE), (DECL), (NAME), (SIZE), (ROUNDED))