diff options
author | Doug Evans <dje@gnu.org> | 1996-05-24 16:31:03 +0000 |
---|---|---|
committer | Doug Evans <dje@gnu.org> | 1996-05-24 16:31:03 +0000 |
commit | a072504b65582b03e42bdac5b7b4e461bc33b4bc (patch) | |
tree | e6e2c04214429a234084aa18f5a45152cc4d8442 | |
parent | 24786cfa4d47eb8df80e1b58e3bd04d069dad81a (diff) | |
download | gcc-a072504b65582b03e42bdac5b7b4e461bc33b4bc.zip gcc-a072504b65582b03e42bdac5b7b4e461bc33b4bc.tar.gz gcc-a072504b65582b03e42bdac5b7b4e461bc33b4bc.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/coff.h (ASM_OUTPUT_ALIGNED_BSS): Update.
From-SVN: r12092
-rw-r--r-- | gcc/config/m68k/coff.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/config/m68k/coff.h b/gcc/config/m68k/coff.h index 9f0a638..f2157ea 100644 --- a/gcc/config/m68k/coff.h +++ b/gcc/config/m68k/coff.h @@ -87,12 +87,12 @@ Boston, MA 02111-1307, USA. */ #define BSS_SECTION_ASM_OP ".section\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 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)) /* Support generic sections */ |