diff options
author | rsandifo <rsandifo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-03-06 17:17:30 +0000 |
---|---|---|
committer | rsandifo <rsandifo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-03-06 17:17:30 +0000 |
commit | 9dd4f611f4ea2ec24abaeb968c66c1c919e4a32b (patch) | |
tree | 6100ee6e40560ca61cc5f3b887acbc1b6de59ff9 /gcc/config/i386/att.h | |
parent | 5fe80ef0b0a1aafd1eb0175c49c338bea5ee4c35 (diff) | |
download | gcc-9dd4f611f4ea2ec24abaeb968c66c1c919e4a32b.tar.gz |
gcc/
* config/i386/att.h (ASM_OUTPUT_ASCII, ASM_OUTPUT_SKIP): Undefine
before redefining.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@122625 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/i386/att.h')
-rw-r--r-- | gcc/config/i386/att.h | 2 |
1 files changed, 2 insertions, 0 deletions
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)) |