From af17c030e8e667f46e4170decf58b744437a4315 Mon Sep 17 00:00:00 2001 From: Richard Sandiford Date: Tue, 6 Mar 2007 17:17:30 +0000 Subject: [PATCH] att.h (ASM_OUTPUT_ASCII, [...]): Undefine before redefining. gcc/ * config/i386/att.h (ASM_OUTPUT_ASCII, ASM_OUTPUT_SKIP): Undefine before redefining. From-SVN: r122625 --- gcc/ChangeLog | 5 +++++ gcc/config/i386/att.h | 2 ++ 2 files changed, 7 insertions(+) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index a9a0565b453..e6067d3edbc 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2007-03-06 Richard Sandiford + + * config/i386/att.h (ASM_OUTPUT_ASCII, ASM_OUTPUT_SKIP): Undefine + before redefining. + 2007-03-06 Jan Hubicka * reg-stack.c (reg_to_stack): Large models don't allow NAN to be diff --git a/gcc/config/i386/att.h b/gcc/config/i386/att.h index 28d0f6ce27c..a454e42fce5 100644 --- a/gcc/config/i386/att.h +++ b/gcc/config/i386/att.h @@ -33,6 +33,7 @@ Boston, MA 02110-1301, USA. */ /* How to output an ASCII string constant. */ +#undef ASM_OUTPUT_ASCII #define ASM_OUTPUT_ASCII(FILE, PTR, SIZE) \ do \ { size_t i = 0, limit = (SIZE); \ @@ -57,6 +58,7 @@ do \ /* This is how to output an assembler line that says to advance the location counter by SIZE bytes. */ +#undef ASM_OUTPUT_SKIP #define ASM_OUTPUT_SKIP(FILE,SIZE) \ fprintf ((FILE), "\t.set .,.+%u\n", (int)(SIZE))