This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

fix i386 smaxsf3 typo


Another bug found while looking for pr19506.  Except that it didn't 
matter because this pattern wasn't being used because it was named
incorrectly (should have been "minsf3").  Until my patch to genopinit.c
a moment ago, anyway.


r~


        * config/i386/i386.md (smaxsf3): Fix mnemonic typo.

Index: config/i386/i386.md
===================================================================
RCS file: /cvs/gcc/gcc/gcc/config/i386/i386.md,v
retrieving revision 1.608
diff -u -p -d -r1.608 i386.md
--- config/i386/i386.md	20 Jan 2005 06:47:28 -0000	1.608
+++ config/i386/i386.md	22 Jan 2005 22:57:41 -0000
@@ -17630,7 +17630,7 @@
 	(smax:SF (match_operand:SF 1 "nonimmediate_operand" "%0")
 		 (match_operand:SF 2 "nonimmediate_operand" "xm")))]
   "TARGET_SSE_MATH"
-  "minss\t{%2, %0|%0, %2}"
+  "maxss\t{%2, %0|%0, %2}"
   [(set_attr "type" "sseadd")
    (set_attr "mode" "SF")])
 


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]