From: Doug Evans Date: Fri, 24 May 1996 16:28:30 +0000 (+0000) Subject: varasm.c (asm_output_bss): New argument DECL. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=89139fecb20dd4f2c30869aa0182620e550b9d98;p=gcc.git 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. * arm/aout.h (ASM_OUTPUT_ALIGNED_BSS): Update. From-SVN: r12088 --- diff --git a/gcc/config/arm/aout.h b/gcc/config/arm/aout.h index 4ed9f432491..109bb9a8120 100644 --- a/gcc/config/arm/aout.h +++ b/gcc/config/arm/aout.h @@ -245,8 +245,8 @@ do { char dstr[30]; \ output_lcomm_directive (STREAM, NAME, SIZE, ALIGN) /* Output a zero-initialized block. */ -#define ASM_OUTPUT_ALIGNED_BSS(STREAM,NAME,SIZE,ALIGN) \ - asm_output_aligned_bss(STREAM, NAME, SIZE, ALIGN) +#define ASM_OUTPUT_ALIGNED_BSS(STREAM,DECL,NAME,SIZE,ALIGN) \ + asm_output_aligned_bss(STREAM, DECL, NAME, SIZE, ALIGN) /* Output a source line for the debugger. */ /* #define ASM_OUTPUT_SOURCE_LINE(STREAM,LINE) */