Commit 6db34dd4 by Nick Clifton Committed by Jeff Law

v850.h (ASM_OUTPUT_ALIGNED_BSS): Use asm_output_aligned_bss() instead of asm_output_bss().

        * v850.h (ASM_OUTPUT_ALIGNED_BSS): Use
        asm_output_aligned_bss() instead of asm_output_bss().

From-SVN: r17509
parent c2d33997
Tue Jan 27 11:02:04 1998 Nick Clifton <nickc@cygnus.com>
* v850.h (ASM_OUTPUT_ALIGNED_BSS): Use
asm_output_aligned_bss() instead of asm_output_bss().
* toplev.c (rest_of_compilation): Replace references to
stack_reg_dump_file and dbr_sched_dump_file with references to
rtl_dump_file.
......
......@@ -1198,11 +1198,10 @@ do { char dstr[30]; \
#define ASM_CLOSE_PAREN ")"
/* This says how to output the assembler to define a global
uninitialized but not common symbol.
Try to use asm_output_bss to implement this macro. */
uninitialized but not common symbol. */
#define ASM_OUTPUT_ALIGNED_BSS(FILE, DECL, NAME, SIZE, ALIGN) \
asm_output_bss ((FILE), (DECL), (NAME), (SIZE), (ALIGN))
asm_output_aligned_bss ((FILE), (DECL), (NAME), (SIZE), (ALIGN))
/* This is how to output the definition of a user-level label named NAME,
such as the label on a static function or variable NAME. */
......
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