Commit fbbc7519 by Doug Evans

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
parent 89139fec
...@@ -1294,8 +1294,8 @@ do { char dstr[30]; \ ...@@ -1294,8 +1294,8 @@ do { char dstr[30]; \
uninitialized but not common symbol. uninitialized but not common symbol.
Try to use asm_output_bss to implement this macro. */ Try to use asm_output_bss to implement this macro. */
#define ASM_OUTPUT_BSS(FILE, NAME, SIZE, ROUNDED) \ #define ASM_OUTPUT_BSS(FILE, DECL, NAME, SIZE, ROUNDED) \
asm_output_bss ((FILE), (NAME), (SIZE), (ROUNDED)) asm_output_bss ((FILE), (DECL), (NAME), (SIZE), (ROUNDED))
/* This says how to output an assembler line /* This says how to output an assembler line
to define a local common symbol. */ to define a local common symbol. */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment