re PR target/18989 (A few potentially ominous, and several likely harmless warnings during 4.0 build)

PR target/18989
 	* config/avr/avr.h (ASM_OUTPUT_ALIGN): Redefine.

From-SVN: r124141
This commit is contained in:
Anatoly Sokolov 2007-04-25 10:18:33 +04:00 committed by Anatoly Sokolov
parent 205a4d09ca
commit 5178d50ab6
2 changed files with 10 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2007-04-25 Anatoly Sokolov <aesok@post.ru>
PR target/18989
* config/avr/avr.h (ASM_OUTPUT_ALIGN): Redefine.
2007-04-24 Brooks Moses <brooks.moses@codesourcery.com>
* real.c (mpfr_from_real): Handle Inf and NaN, and allow the

View File

@ -660,7 +660,11 @@ sprintf (STRING, "*.%s%lu", PREFIX, (unsigned long)(NUM))
#define ASM_OUTPUT_SKIP(STREAM, N) \
fprintf (STREAM, "\t.skip %lu,0\n", (unsigned long)(N))
#define ASM_OUTPUT_ALIGN(STREAM, POWER)
#define ASM_OUTPUT_ALIGN(STREAM, POWER) \
do { \
if ((POWER) > 1) \
fprintf (STREAM, "\t.p2align\t%d\n", POWER); \
} while (0)
#define CASE_VECTOR_MODE HImode