From ebb9b225ae49217a6867f7c8c7090b7a4f0c115a Mon Sep 17 00:00:00 2001
From: wlott <wlott>
Date: Thu, 20 Aug 1992 16:29:33 +0000
Subject: [PATCH] Fixed a lifetime bug in full call.  This only showed up if
 there were either a variable number or > 6 arguments and the caller was large
 enough that the compute-lra-from-code couldn't be done in one instruction.

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

diff --git a/compiler/mips/call.lisp b/compiler/mips/call.lisp
index 635860c72..0230f79b0 100644
--- a/compiler/mips/call.lisp
+++ b/compiler/mips/call.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/mips/call.lisp,v 1.49 1992/07/28 20:37:20 wlott Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/call.lisp,v 1.50 1992/08/20 16:29:33 wlott Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -732,7 +732,7 @@ default-value-8
 	 '((:temporary (:scs (descriptor-reg) :from :eval) move-temp)))
 
      ,@(unless (eq return :tail)
-	 '((:temporary (:scs (non-descriptor-reg) :from :eval) temp)
+	 '((:temporary (:scs (non-descriptor-reg)) temp)
 	   (:temporary (:sc control-stack :offset nfp-save-offset) nfp-save)))
 
      (:temporary (:scs (interior-reg)) lip)
-- 
GitLab