diff options
author | Doug Evans <dje@gnu.org> | 1996-05-24 16:29:41 +0000 |
---|---|---|
committer | Doug Evans <dje@gnu.org> | 1996-05-24 16:29:41 +0000 |
commit | ca4fca3e068fefee5ca207ec4bd66779607870cd (patch) | |
tree | 8c8b27dd66d4f306edb3684d8e1df4db1f4b8d01 | |
parent | fbbc7519bd2ab20ccf229408e704b3dc64dcb5cf (diff) | |
download | gcc-ca4fca3e068fefee5ca207ec4bd66779607870cd.zip gcc-ca4fca3e068fefee5ca207ec4bd66779607870cd.tar.gz gcc-ca4fca3e068fefee5ca207ec4bd66779607870cd.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.
* i386/linux.h (ASM_OUTPUT_ALIGNED_BSS): Update.
From-SVN: r12090
-rw-r--r-- | gcc/config/i386/linux.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/config/i386/linux.h b/gcc/config/i386/linux.h index 64761d0..844942d 100644 --- a/gcc/config/i386/linux.h +++ b/gcc/config/i386/linux.h @@ -196,9 +196,9 @@ Boston, MA 02111-1307, USA. */ #include "i386/perform.h" /* 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) |