From 446918483288450a22ce04420b68f74c6e2f6eb5 Mon Sep 17 00:00:00 2001 From: toy <toy> Date: Thu, 3 Jul 2003 02:14:58 +0000 Subject: [PATCH] (defun foo (x) (declare (double-float x)) (let ((y (* pi x))) (atan y y))) causes both args to the fatan2 vop to be allocated in fr0, which wasn't handled before. Fix this. --- compiler/x86/float.lisp | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/compiler/x86/float.lisp b/compiler/x86/float.lisp index d8d129857..40c7f6eb1 100644 --- a/compiler/x86/float.lisp +++ b/compiler/x86/float.lisp @@ -7,7 +7,7 @@ ;;; Scott Fahlman or slisp-group@cs.cmu.edu. ;;; (ext:file-comment - "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/x86/float.lisp,v 1.40 2003/04/27 14:52:27 toy Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/x86/float.lisp,v 1.41 2003/07/03 02:14:58 toy Exp $") ;;; ;;; ********************************************************************** ;;; @@ -3191,6 +3191,11 @@ (descriptor-reg (fp-pop) (inst fldd (ea-for-df-desc y))))) + ;; y in fr0, x in fr0 + ((and (sc-is y double-reg) (zerop (tn-offset y)) + (sc-is x double-reg) (zerop (tn-offset x))) + ;; Copy x to fr1, leave y in fr0 + (inst fst fr1)) ;; y in fr0; x not in fr1 ((and (sc-is y double-reg) (zerop (tn-offset y))) (inst fxch fr1) -- GitLab