diff options
author | Doug Evans <dje@gnu.org> | 1996-05-24 16:32:25 +0000 |
---|---|---|
committer | Doug Evans <dje@gnu.org> | 1996-05-24 16:32:25 +0000 |
commit | 9df2447b87af547599329d240f00badea7b66362 (patch) | |
tree | 5aeaf8c7737e90ef03e9a05ed71d05a94094227b | |
parent | 09ea387b79d5211f549bf4aa6d2d9944bd0026e7 (diff) | |
download | gcc-9df2447b87af547599329d240f00badea7b66362.zip gcc-9df2447b87af547599329d240f00badea7b66362.tar.gz gcc-9df2447b87af547599329d240f00badea7b66362.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.
* m68k/m68k-aout.h (ASM_OUTPUT_BSS): Update.
From-SVN: r12094
-rw-r--r-- | gcc/config/m68k/m68k-aout.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/config/m68k/m68k-aout.h b/gcc/config/m68k/m68k-aout.h index f947a9f..b65f9fe 100644 --- a/gcc/config/m68k/m68k-aout.h +++ b/gcc/config/m68k/m68k-aout.h @@ -34,11 +34,11 @@ Boston, MA 02111-1307, USA. */ #define BSS_SECTION_ASM_OP "\t.bss" /* 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. The variable ROUNDED is the size rounded up to whatever alignment the caller wants. Try to use asm_output_bss to implement this macro. */ /* a.out files typically can't handle arbitrary variable alignments so define ASM_OUTPUT_BSS instead of ASM_OUTPUT_ALIGNED_BSS. */ -#define ASM_OUTPUT_BSS(FILE, NAME, SIZE, ROUNDED) \ - asm_output_bss ((FILE), (NAME), (SIZE), (ROUNDED)) +#define ASM_OUTPUT_BSS(FILE, DECL, NAME, SIZE, ROUNDED) \ + asm_output_bss ((FILE), (DECL), (NAME), (SIZE), (ROUNDED)) |