From c9ac108fa55320cb3063d4a0c62a9c1c4d6cd934 Mon Sep 17 00:00:00 2001 From: wlott <wlott> Date: Sun, 2 Dec 1990 23:48:50 +0000 Subject: [PATCH] Fixed a lifetime bug in full-call. ``Temp'' was being used to help compute the LRA, but it's lifetime was :from :eval so the compiler though it didn't conflict with, for example, the new FP. Therefore, the new FP could get trashed. --- compiler/sparc/call.lisp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compiler/sparc/call.lisp b/compiler/sparc/call.lisp index 9c1867907..a547227f7 100644 --- a/compiler/sparc/call.lisp +++ b/compiler/sparc/call.lisp @@ -7,7 +7,7 @@ ;;; Scott Fahlman (FAHLMAN@CMUC). ;;; ********************************************************************** ;;; -;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/sparc/call.lisp,v 1.1 1990/11/30 17:04:32 wlott Exp $ +;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/sparc/call.lisp,v 1.2 1990/12/02 23:48:50 wlott Exp $ ;;; ;;; This file contains the VM definition of function call for the SPARC. ;;; @@ -696,7 +696,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))) (:generator ,(+ (if named 5 0) -- GitLab