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

From-SVN: r12091

gcc/config/i386/sysv4.h

index a2dc9484d9a90e55524a7ff9e7b4bdf780973905..3f69827fd54273df0e264f92a31364baf1a4275d 100644 (file)
@@ -245,9 +245,9 @@ do { long value[3];                                                 \
 #define JUMP_TABLES_IN_TEXT_SECTION
 
 /* 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)