From: uros Date: Sun, 26 Apr 2009 16:50:24 +0000 (+0000) Subject: * config/i386/i386.c (print_operand) ['z']: Fix typo. X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=cfc43899da16d29b6e83239e4a92befac428d31a;p=thirdparty%2Fgcc.git * config/i386/i386.c (print_operand) ['z']: Fix typo. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@146804 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 64405d3505d1..01046ef4ba28 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2009-04-26 Uros Bizjak + + * config/i386/i386.c (print_operand) ['z']: Fix typo. + 2009-04-26 Kai Tietz * config/i386/mingw-w64.h (STANDARD_INCLUDE_DIR): diff --git a/gcc/config/i386/i386.c b/gcc/config/i386/i386.c index 67a4efc04b75..72e9e7172e9c 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;