From 09ea387b79d5211f549bf4aa6d2d9944bd0026e7 Mon Sep 17 00:00:00 2001 From: Doug Evans Date: Fri, 24 May 1996 16:31:50 +0000 Subject: varasm.c (asm_output_bss): New argument DECL. * 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/linux.h (ASM_OUTPUT_ALIGNED_BSS): Update. From-SVN: r12093 --- gcc/config/m68k/linux.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'gcc') diff --git a/gcc/config/m68k/linux.h b/gcc/config/m68k/linux.h index 00f8f42..1d7ac32 100644 --- a/gcc/config/m68k/linux.h +++ b/gcc/config/m68k/linux.h @@ -175,12 +175,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) /* Output assembler code to FILE to increment profiler label # LABELNO for profiling a function entry. */ -- cgit v1.1