diff options
author | dje <dje@138bc75d-0d04-0410-961f-82ee72b054a4> | 1996-05-24 16:31:50 +0000 |
---|---|---|
committer | dje <dje@138bc75d-0d04-0410-961f-82ee72b054a4> | 1996-05-24 16:31:50 +0000 |
commit | 31b06af86a1f5ac147133a0f5357d14971ae03cb (patch) | |
tree | 0bce5294d40d58fd4bb2cacda0b1e101774dcee4 /gcc/config/m68k/linux.h | |
parent | 8e95f768855eb2ce95b327264c4dbc58988c895e (diff) | |
download | gcc-31b06af86a1f5ac147133a0f5357d14971ae03cb.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.
* m68k/linux.h (ASM_OUTPUT_ALIGNED_BSS): Update.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@12093 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/m68k/linux.h')
-rw-r--r-- | gcc/config/m68k/linux.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/config/m68k/linux.h b/gcc/config/m68k/linux.h index 00f8f4251f4..1d7ac32255f 100644 --- a/gcc/config/m68k/linux.h +++ b/gcc/config/m68k/linux.h @@ -175,12 +175,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) /* Output assembler code to FILE to increment profiler label # LABELNO for profiling a function entry. */ |