Commit 89139fec 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.
	* arm/aout.h (ASM_OUTPUT_ALIGNED_BSS): Update.

From-SVN: r12088
parent 91fddd7c
...@@ -245,8 +245,8 @@ do { char dstr[30]; \ ...@@ -245,8 +245,8 @@ do { char dstr[30]; \
output_lcomm_directive (STREAM, NAME, SIZE, ALIGN) output_lcomm_directive (STREAM, NAME, SIZE, ALIGN)
/* Output a zero-initialized block. */ /* Output a zero-initialized block. */
#define ASM_OUTPUT_ALIGNED_BSS(STREAM,NAME,SIZE,ALIGN) \ #define ASM_OUTPUT_ALIGNED_BSS(STREAM,DECL,NAME,SIZE,ALIGN) \
asm_output_aligned_bss(STREAM, NAME, SIZE, ALIGN) asm_output_aligned_bss(STREAM, DECL, NAME, SIZE, ALIGN)
/* Output a source line for the debugger. */ /* Output a source line for the debugger. */
/* #define ASM_OUTPUT_SOURCE_LINE(STREAM,LINE) */ /* #define ASM_OUTPUT_SOURCE_LINE(STREAM,LINE) */
......
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