From: Anatoly Sokolov Date: Sun, 3 Apr 2011 19:43:49 +0000 (+0400) Subject: avr.h (ASM_OUTPUT_BSS): Remove. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=53802f278c2f8bf873622bf317041558910200cf;p=gcc.git avr.h (ASM_OUTPUT_BSS): Remove. * config/avr/avr.h (ASM_OUTPUT_BSS): Remove. (ASM_OUTPUT_ALIGNED_BSS): Define. From-SVN: r171915 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 8a10a7c017b..ba41000a8a7 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2011-04-03 Anatoly Sokolov + + * config/avr/avr.h (ASM_OUTPUT_BSS): Remove. + (ASM_OUTPUT_ALIGNED_BSS): Define. + 2011-04-03 Michael Matz * lto-streamer.h (struct lto_streamer_cache_d): Remove offsets diff --git a/gcc/config/avr/avr.h b/gcc/config/avr/avr.h index 854cc45db6e..aaf29dc31c5 100644 --- a/gcc/config/avr/avr.h +++ b/gcc/config/avr/avr.h @@ -474,8 +474,8 @@ do { \ fprintf ((STREAM), ",%lu,1\n", (unsigned long)(SIZE)); \ } while (0) -#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) #define ASM_OUTPUT_LOCAL(STREAM, NAME, SIZE, ROUNDED) \ do { \