diff options
author | Uros Bizjak <uros@gcc.gnu.org> | 2009-07-24 21:33:14 +0200 |
---|---|---|
committer | Uros Bizjak <uros@gcc.gnu.org> | 2009-07-24 21:33:14 +0200 |
commit | 87da38430a7bc90b7363a846f547aae17d43b479 (patch) | |
tree | 98f33cbc6dda20f47bbda97343756695a949fe5d /gcc/config/i386/x86-64.h | |
parent | fcbaa582daead24571178009055be169f30f5b9d (diff) | |
download | gcc-87da38430a7bc90b7363a846f547aae17d43b479.zip gcc-87da38430a7bc90b7363a846f547aae17d43b479.tar.gz gcc-87da38430a7bc90b7363a846f547aae17d43b479.tar.bz2 |
linux.c: Use fputs or putc instead of fprintf where appropriate.
* 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.
From-SVN: r150062
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 5d6958c..1b64813 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) |