diff options
author | Uros Bizjak <ubizjak@gmail.com> | 2009-04-26 18:50:24 +0200 |
---|---|---|
committer | Uros Bizjak <uros@gcc.gnu.org> | 2009-04-26 18:50:24 +0200 |
commit | f6a51d3184cb8cd65a5b9a72312c4f4fb814a384 (patch) | |
tree | 7f484405052c73fef05f44085860278bd8753964 /gcc/config | |
parent | 2a8428f804d9d2dfa6de65d4158f8930903405b7 (diff) | |
download | gcc-f6a51d3184cb8cd65a5b9a72312c4f4fb814a384.zip gcc-f6a51d3184cb8cd65a5b9a72312c4f4fb814a384.tar.gz gcc-f6a51d3184cb8cd65a5b9a72312c4f4fb814a384.tar.bz2 |
i386.c (print_operand): Fix typo.
* config/i386/i386.c (print_operand) ['z']: Fix typo.
From-SVN: r146804
Diffstat (limited to 'gcc/config')
-rw-r--r-- | gcc/config/i386/i386.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/i386/i386.c b/gcc/config/i386/i386.c index 67a4efc..72e9e71 100644 --- a/gcc/config/i386/i386.c +++ b/gcc/config/i386/i386.c @@ -11000,7 +11000,7 @@ print_operand (FILE *file, rtx x, int code) operator with memory operand. */ if (MEM_P (x)) { -#ifdef HAVE_AS_IX86_FISTS +#ifdef HAVE_AS_IX86_FILDS putc ('s', file); #endif return; |