CMUCL commit: src/compiler/x86 (float-sse2.lisp)

Raymond Toy rtoy at common-lisp.net
Wed Feb 24 02:43:23 CET 2010


    Date: Tuesday, February 23, 2010 @ 20:43:23
  Author: rtoy
    Path: /project/cmucl/cvsroot/src/compiler/x86

Modified: float-sse2.lisp

Fix critical bug in vop for multiplying a complex single-float by a
single-float.


-----------------+
 float-sse2.lisp |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)


Index: src/compiler/x86/float-sse2.lisp
diff -u src/compiler/x86/float-sse2.lisp:1.10 src/compiler/x86/float-sse2.lisp:1.11
--- src/compiler/x86/float-sse2.lisp:1.10	Wed Oct 28 18:48:11 2009
+++ src/compiler/x86/float-sse2.lisp	Tue Feb 23 20:43:22 2010
@@ -7,7 +7,7 @@
 ;;; Scott Fahlman or slisp-group at cs.cmu.edu.
 ;;;
 (ext:file-comment
-  "$Header: /project/cmucl/cvsroot/src/compiler/x86/float-sse2.lisp,v 1.10 2009-10-28 22:48:11 rtoy Exp $")
+  "$Header: /project/cmucl/cvsroot/src/compiler/x86/float-sse2.lisp,v 1.11 2010-02-24 01:43:22 rtoy Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -2033,7 +2033,7 @@
 	       (unless (location= y r)
 		 (inst movaps r y))	; r = yi|yr or 0|0|yi|yr
 	       (inst ,fmul r t0)))))))
-  (complex-*-float single mulps movlhps 4)
+  (complex-*-float single mulps unpcklps 4)
   (complex-*-float double mulpd unpcklpd 4))
 
 ;; Divide a complex by a real



More information about the cmucl-commit mailing list