diff options
author | uros <uros@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-07-24 19:33:14 +0000 |
---|---|---|
committer | uros <uros@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-07-24 19:33:14 +0000 |
commit | bcfcac73131def5d921bb4c405e674b20761b651 (patch) | |
tree | 98f33cbc6dda20f47bbda97343756695a949fe5d /gcc/config/i386/x86-64.h | |
parent | 03748a0479f96eb28279272dac319b9d14fb9462 (diff) | |
download | gcc-bcfcac73131def5d921bb4c405e674b20761b651.tar.gz |
* config/i386/linux.c: Use fputs or putc instead of fprintf
where appropriate.
* config/i386/gas.h: Ditto.
* config/i386/x86-64.h: Ditto.
* config/i386/att.h: Ditto.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@150062 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/i386/x86-64.h')
-rw-r--r-- | gcc/config/i386/x86-64.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/i386/x86-64.h b/gcc/config/i386/x86-64.h index 5d6958cc4ad..1b648138ca0 100644 --- a/gcc/config/i386/x86-64.h +++ b/gcc/config/i386/x86-64.h @@ -77,7 +77,7 @@ see the files COPYING3 and COPYING.RUNTIME respectively. If not, see if ((LOG) > 3 \ && (1 << (LOG)) > ((MAX_SKIP) + 1) \ && (MAX_SKIP) >= 7) \ - fprintf ((FILE), "\t.p2align 3\n"); \ + fputs ("\t.p2align 3\n", (FILE)); \ } \ } \ } while (0) |