aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDoug Evans <dje@gnu.org>1996-05-24 16:28:30 +0000
committerDoug Evans <dje@gnu.org>1996-05-24 16:28:30 +0000
commit89139fecb20dd4f2c30869aa0182620e550b9d98 (patch)
treec0b5fe068402f4b2e1325f0635de8112317efe51
parent91fddd7c9f3c7faaac55caa3ea329bfde10b225e (diff)
downloadgcc-89139fecb20dd4f2c30869aa0182620e550b9d98.zip
gcc-89139fecb20dd4f2c30869aa0182620e550b9d98.tar.gz
gcc-89139fecb20dd4f2c30869aa0182620e550b9d98.tar.bz2
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
-rw-r--r--gcc/config/arm/aout.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/arm/aout.h b/gcc/config/arm/aout.h
index 4ed9f43..109bb9a 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) */