varasm.c (asm_output_bss): New argument DECL.
authorDoug Evans <dje@gnu.org>
Fri, 24 May 1996 16:31:03 +0000 (16:31 +0000)
committerDoug Evans <dje@gnu.org>
Fri, 24 May 1996 16:31:03 +0000 (16:31 +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/coff.h (ASM_OUTPUT_ALIGNED_BSS): Update.

From-SVN: r12092

gcc/config/m68k/coff.h

index 9f0a638d02c6e51951bdee03472c47f3372d2ab5..f2157eae508b36f4a2d91fd727eff60463c01c52 100644 (file)
@@ -87,12 +87,12 @@ Boston, MA 02111-1307, USA.  */
 #define BSS_SECTION_ASM_OP     ".section\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 and alignment is ALIGN bytes.
    Try to use asm_output_aligned_bss to implement this macro.  */
 
-#define ASM_OUTPUT_ALIGNED_BSS(FILE, NAME, SIZE, ALIGN) \
-  asm_output_aligned_bss ((FILE), (NAME), (SIZE), (ALIGN))
+#define ASM_OUTPUT_ALIGNED_BSS(FILE, DECL, NAME, SIZE, ALIGN) \
+  asm_output_aligned_bss ((FILE), (DECL), (NAME), (SIZE), (ALIGN))
 
 /* Support generic sections */