From 712d3455c0452028b185cb8f233183dbadafc103 Mon Sep 17 00:00:00 2001
From: wlott <wlott>
Date: Fri, 3 May 1991 01:36:35 +0000
Subject: [PATCH] Fixed with-fp-temp to save NL0 beyond the end of the stack
 instead of in the middle of the current frame.

---
 compiler/rt/mc68881.lisp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/compiler/rt/mc68881.lisp b/compiler/rt/mc68881.lisp
index cb3c5e8d3..f8688bf46 100644
--- a/compiler/rt/mc68881.lisp
+++ b/compiler/rt/mc68881.lisp
@@ -43,9 +43,9 @@
 	 (error "Can only have one FP temp.")
 	 (let ((,var nl0-tn)
 	       (*in-with-fp-temp* t))
-	   (storew ,var nsp-tn 1)
+	   (storew ,var nsp-tn -1)
 	   (multiple-value-prog1 (progn ,@body)
-	     (loadw ,var nsp-tn 1))))))
+	     (loadw ,var nsp-tn -1))))))
 
 (define-move-function (load-single 7) (vop x y)
   ((single-stack) (mc68881-single-reg))
-- 
GitLab