diff options
author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1997-11-04 20:38:45 +0000 |
---|---|---|
committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1997-11-04 20:38:45 +0000 |
commit | 4a95b95412a2a0581f64b66edbf7cca1ceb7c5da (patch) | |
tree | ff8c3c1902cd196b187528d21904894373e8c01d /gcc/config/mn10300 | |
parent | 4926b4052b0eb7c71645038a856a62f26a8b79ab (diff) | |
download | gcc-4a95b95412a2a0581f64b66edbf7cca1ceb7c5da.tar.gz |
* mn10200.h (ASM_OUTPUT_BSS): Delete.
(ASM_OUTPUT_ALIGNED_BSS): New macro
* mn10300.h (ASM_OUTPUT_BSS): Delete.
(ASM_OUTPUT_ALIGNED_BSS): New macro.
* v850.h (ASM_OUTPUT_BSS): Delete.
(ASM_OUTPUT_ALIGNED_BSS): New macro.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@16312 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/mn10300')
-rw-r--r-- | gcc/config/mn10300/mn10300.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/mn10300/mn10300.h b/gcc/config/mn10300/mn10300.h index 252a70f1846..ed98a665bb8 100644 --- a/gcc/config/mn10300/mn10300.h +++ b/gcc/config/mn10300/mn10300.h @@ -861,8 +861,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, DECL, NAME, SIZE, ROUNDED) \ - asm_output_bss ((FILE), (DECL), (NAME), (SIZE), (ROUNDED)) +#define ASM_OUTPUT_ALIGNED_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. */ |