diff options
author | Nick Clifton <nickc@cygnus.com> | 1998-01-27 10:19:24 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1998-01-27 03:19:24 -0700 |
commit | 6db34dd47be8633131bd54492942c6e85272db1a (patch) | |
tree | 8351d00d1e7aa65ee2b3a30fca846f4b5892ad45 /gcc | |
parent | c2d339975ecf161f8277573c27a981df89d7bca9 (diff) | |
download | gcc-6db34dd47be8633131bd54492942c6e85272db1a.zip gcc-6db34dd47be8633131bd54492942c6e85272db1a.tar.gz gcc-6db34dd47be8633131bd54492942c6e85272db1a.tar.bz2 |
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
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 3 | ||||
-rw-r--r-- | gcc/config/v850/v850.h | 5 |
2 files changed, 5 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 15fb822..50b90e2 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,8 @@ 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. diff --git a/gcc/config/v850/v850.h b/gcc/config/v850/v850.h index 59ad91d..207b661 100644 --- a/gcc/config/v850/v850.h +++ b/gcc/config/v850/v850.h @@ -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. */ |