[cmucl-cvs] CMUCL commit: RELEASE-20B-BRANCH src/compiler/x86 (float-sse2.lisp)
Raymond Toy
rtoy at common-lisp.net
Fri Aug 6 18:02:04 UTC 2010
Date: Friday, August 6, 2010 @ 14:02:03
Author: rtoy
Path: /project/cmucl/cvsroot/src/compiler/x86
Tag: RELEASE-20B-BRANCH
Modified: float-sse2.lisp
Merge fix from HEAD branch to fix typo in */complex-double-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.16 src/compiler/x86/float-sse2.lisp:1.16.2.1
--- src/compiler/x86/float-sse2.lisp:1.16 Fri Jul 23 07:53:37 2010
+++ src/compiler/x86/float-sse2.lisp Fri Aug 6 14:02:03 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.16 2010-07-23 11:53:37 rtoy Exp $")
+ "$Header: /project/cmucl/cvsroot/src/compiler/x86/float-sse2.lisp,v 1.16.2.1 2010-08-06 18:02:03 rtoy Exp $")
;;;
;;; **********************************************************************
;;;
@@ -2169,7 +2169,7 @@
(inst shufpd t2 t2 1) ; t2 = a*d|b*d
(inst mov tmp #x80000000)
(inst movd t0 tmp) ; t0 = 0|0|0|#x80000000
- (inst psllq tmp 32) ; t0 = 0|#x80000000,00000000
+ (inst psllq t0 32) ; t0 = 0|#x80000000,00000000
(inst xorpd t2 t0) ; t2 = a*d|-b*d
(inst addpd t2 t1) ; t2 = a*d+b*c | a*c-b*d
(inst movapd r t2)))
More information about the cmucl-cvs
mailing list