]> gcc.gnu.org Git - gcc.git/commitdiff
varasm.c (asm_output_bss): New argument DECL.
authorDoug Evans <dje@gnu.org>
Fri, 24 May 1996 16:28:30 +0000 (16:28 +0000)
committerDoug Evans <dje@gnu.org>
Fri, 24 May 1996 16:28:30 +0000 (16:28 +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.
* arm/aout.h (ASM_OUTPUT_ALIGNED_BSS): Update.

From-SVN: r12088

gcc/config/arm/aout.h

index 4ed9f4324910cd3d11688608689ad1434d3d9215..109bb9a812068c494b153284786d665f4b720bb0 100644 (file)
@@ -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) */
This page took 0.066629 seconds and 5 git commands to generate.