From 673a9913a474d0f8aca207a9f7363fb8bc484670 Mon Sep 17 00:00:00 2001
From: wlott <wlott>
Date: Tue, 10 Jul 1990 18:28:04 +0000
Subject: [PATCH] Save the NFP before we trash CONT in known call.

---
 compiler/mips/call.lisp | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/compiler/mips/call.lisp b/compiler/mips/call.lisp
index 379712369..e1f85924d 100644
--- a/compiler/mips/call.lisp
+++ b/compiler/mips/call.lisp
@@ -7,7 +7,7 @@
 ;;; Scott Fahlman (FAHLMAN@CMUC). 
 ;;; **********************************************************************
 ;;;
-;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/call.lisp,v 1.24 1990/07/03 06:31:02 wlott Exp $
+;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/call.lisp,v 1.25 1990/07/10 18:28:04 wlott Exp $
 ;;;
 ;;;    This file contains the VM definition of function call for the MIPS.
 ;;;
@@ -427,9 +427,9 @@ default-value-5
   (:generator 5
     (let ((label (gen-label))
 	  (cur-nfp (current-nfp-tn vop)))
-      (move fp-tn fp)
       (when cur-nfp
 	(store-stack-tn nfp-save cur-nfp))
+      (move fp-tn fp)
       (let ((callee-nfp (callee-nfp-tn callee)))
 	(when callee-nfp
 	  (move callee-nfp nfp)))
@@ -461,9 +461,9 @@ default-value-5
   (:generator 20
     (let ((label (gen-label))
 	  (cur-nfp (current-nfp-tn vop)))
-      (move fp-tn fp)
       (when cur-nfp
 	(store-stack-tn nfp-save cur-nfp))
+      (move fp-tn fp)
       (let ((callee-nfp (callee-nfp-tn callee)))
 	(when callee-nfp
 	  (move callee-nfp nfp)))
@@ -498,9 +498,9 @@ default-value-5
   (:generator 5
     (let ((label (gen-label))
 	  (cur-nfp (current-nfp-tn vop)))
-      (move fp-tn fp)
       (when cur-nfp
 	(store-stack-tn nfp-save cur-nfp))
+      (move fp-tn fp)
       (let ((callee-nfp (callee-nfp-tn callee)))
 	(when callee-nfp
 	  (move callee-nfp nfp)))
-- 
GitLab