diff options
author | Doug Evans <dje@gnu.org> | 1996-05-24 16:29:02 +0000 |
---|---|---|
committer | Doug Evans <dje@gnu.org> | 1996-05-24 16:29:02 +0000 |
commit | fbbc7519bd2ab20ccf229408e704b3dc64dcb5cf (patch) | |
tree | 2dc93d3b3bb0a55f801da36d96581523af39ee46 /gcc | |
parent | 89139fecb20dd4f2c30869aa0182620e550b9d98 (diff) | |
download | gcc-fbbc7519bd2ab20ccf229408e704b3dc64dcb5cf.zip gcc-fbbc7519bd2ab20ccf229408e704b3dc64dcb5cf.tar.gz gcc-fbbc7519bd2ab20ccf229408e704b3dc64dcb5cf.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.
* h8300/h8300.h (ASM_OUTPUT_BSS): Update.
From-SVN: r12089
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/h8300/h8300.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/h8300/h8300.h b/gcc/config/h8300/h8300.h index 1ef3bf7..2e5b78d 100644 --- a/gcc/config/h8300/h8300.h +++ b/gcc/config/h8300/h8300.h @@ -1294,8 +1294,8 @@ do { char dstr[30]; \ uninitialized but not common symbol. Try to use asm_output_bss to implement this macro. */ -#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)) /* This says how to output an assembler line to define a local common symbol. */ |