diff options
author | Doug Evans <dje@gnu.org> | 1996-05-24 16:34:04 +0000 |
---|---|---|
committer | Doug Evans <dje@gnu.org> | 1996-05-24 16:34:04 +0000 |
commit | 0bb7aea5c172dd9382525a7dc0d5bcb309aa83ff (patch) | |
tree | 0ef4ecb5630d116fe0da1128c2ee2251adde945b /gcc | |
parent | 3a3bd477aa146213c34811df9cc95af8e5768965 (diff) | |
download | gcc-0bb7aea5c172dd9382525a7dc0d5bcb309aa83ff.zip gcc-0bb7aea5c172dd9382525a7dc0d5bcb309aa83ff.tar.gz gcc-0bb7aea5c172dd9382525a7dc0d5bcb309aa83ff.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.
* sparc/sysv4.h (ASM_OUTPUT_ALIGNED_BSS): Update.
From-SVN: r12097
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/sparc/sysv4.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/config/sparc/sysv4.h b/gcc/config/sparc/sysv4.h index ad6cd10..dbea15c 100644 --- a/gcc/config/sparc/sysv4.h +++ b/gcc/config/sparc/sysv4.h @@ -262,9 +262,9 @@ do { long value[4]; \ } /* 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) |