From 630c599b72e52cbe22a35281ee77b8bd3a1f6815 Mon Sep 17 00:00:00 2001 From: toy <toy> Date: Tue, 26 Nov 2002 03:59:39 +0000 Subject: [PATCH] Fix a long-standing typo wherein the macrolet for vop for subtracting a complex from a float was actually used. --- compiler/sparc/float.lisp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/compiler/sparc/float.lisp b/compiler/sparc/float.lisp index 98d5e26cc..6d02fb076 100644 --- a/compiler/sparc/float.lisp +++ b/compiler/sparc/float.lisp @@ -5,7 +5,7 @@ ;;; Carnegie Mellon University, and has been placed in the public domain. ;;; (ext:file-comment - "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/sparc/float.lisp,v 1.35 2002/10/07 17:44:13 toy Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/sparc/float.lisp,v 1.36 2002/11/26 03:59:39 toy Exp $") ;;; ;;; ********************************************************************** ;;; @@ -1775,10 +1775,10 @@ (ri (,imag-part r))) (inst ,fop rr x yr) (,@fneg ri yi)))) - )) + ))) (frob single fsubs (inst fnegs) 2) - (frob double fsubd (negate-double-reg) 2))) + (frob double fsubd (negate-double-reg) 2)) ;; Multiply two complex numbers -- GitLab