From 76709385d3b7e0946ae5f934221824d93ff1c085 Mon Sep 17 00:00:00 2001
From: wlott <wlott>
Date: Thu, 6 Sep 1990 17:41:50 +0000
Subject: [PATCH] Changed make-old-fp-save-location and
 make-return-pc-save-location to specify environment-debug live tns with
 specific save locations instead of stack wired environment live tns.

---
 compiler/mips/call.lisp | 16 +++++++++-------
 1 file changed, 9 insertions(+), 7 deletions(-)

diff --git a/compiler/mips/call.lisp b/compiler/mips/call.lisp
index 30de2a9e2..8c10cacef 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.27 1990/08/23 18:48:04 wlott Exp $
+;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/call.lisp,v 1.28 1990/09/06 17:41:50 wlott Exp $
 ;;;
 ;;;    This file contains the VM definition of function call for the MIPS.
 ;;;
@@ -67,16 +67,18 @@
 ;;; known location.
 ;;;
 (defun make-old-fp-save-location (env)
-  (environment-live-tn
+  (specify-save-tn
+   (environment-debug-live-tn (make-normal-tn *fixnum-primitive-type*) env)
    (make-wired-tn *fixnum-primitive-type*
 		  control-stack-arg-scn
-		  old-fp-save-offset)
-   env))
+		  old-fp-save-offset)))
 ;;;
 (defun make-return-pc-save-location (env)
-  (environment-live-tn
-   (make-wired-tn *any-primitive-type* control-stack-arg-scn lra-save-offset)
-   env))
+  (specify-save-tn
+   (environment-debug-live-tn (make-normal-tn *any-primitive-type*) env)
+   (make-wired-tn *any-primitive-type*
+		  control-stack-arg-scn
+		  lra-save-offset)))
 
 ;;; Make-Argument-Count-Location  --  Interface
 ;;;
-- 
GitLab