diff options
author | dje <dje@138bc75d-0d04-0410-961f-82ee72b054a4> | 1996-05-24 16:30:22 +0000 |
---|---|---|
committer | dje <dje@138bc75d-0d04-0410-961f-82ee72b054a4> | 1996-05-24 16:30:22 +0000 |
commit | 9935b7ad732f60ca77d617aabec700e98f405c3a (patch) | |
tree | 073f4eedd0f603bdb665c3badea1459f2c079bb4 /gcc/config/i386/sysv4.h | |
parent | 5021dfa01eae352e7d8f9fbe36ffe65512f65060 (diff) | |
download | gcc-9935b7ad732f60ca77d617aabec700e98f405c3a.tar.gz |
* 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/sysv4.h (ASM_OUTPUT_ALIGNED_BSS): Update.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@12091 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/i386/sysv4.h')
-rw-r--r-- | gcc/config/i386/sysv4.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/config/i386/sysv4.h b/gcc/config/i386/sysv4.h index a2dc9484d9a..3f69827fd54 100644 --- a/gcc/config/i386/sysv4.h +++ b/gcc/config/i386/sysv4.h @@ -245,9 +245,9 @@ do { long value[3]; \ #define JUMP_TABLES_IN_TEXT_SECTION /* 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) |