Skip to content
Snippets Groups Projects
Commit ebb9b225 authored by wlott's avatar wlott
Browse files

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.
parent 6a42784b
No related branches found
No related tags found
No related merge requests found
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
;;; Scott Fahlman or slisp-group@cs.cmu.edu. ;;; Scott Fahlman or slisp-group@cs.cmu.edu.
;;; ;;;
(ext:file-comment (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 ...@@ -732,7 +732,7 @@ default-value-8
'((:temporary (:scs (descriptor-reg) :from :eval) move-temp))) '((:temporary (:scs (descriptor-reg) :from :eval) move-temp)))
,@(unless (eq return :tail) ,@(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 (:sc control-stack :offset nfp-save-offset) nfp-save)))
(:temporary (:scs (interior-reg)) lip) (:temporary (:scs (interior-reg)) lip)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment