diff options
author | Doug Evans <dje@gnu.org> | 1996-05-24 16:28:30 +0000 |
---|---|---|
committer | Doug Evans <dje@gnu.org> | 1996-05-24 16:28:30 +0000 |
commit | 89139fecb20dd4f2c30869aa0182620e550b9d98 (patch) | |
tree | c0b5fe068402f4b2e1325f0635de8112317efe51 /gcc | |
parent | 91fddd7c9f3c7faaac55caa3ea329bfde10b225e (diff) | |
download | gcc-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
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/arm/aout.h | 4 |
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) */ |