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

missed tail-call-variable when making the return-pc descriptor-reg to

any-reg change.
parent dd4956aa
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.58 1993/05/27 01:30:11 wlott Exp $") "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/call.lisp,v 1.59 1993/05/27 01:33:30 wlott Exp $")
;;; ;;;
;;; ********************************************************************** ;;; **********************************************************************
;;; ;;;
...@@ -923,7 +923,7 @@ default-value-8 ...@@ -923,7 +923,7 @@ default-value-8
(args-arg :scs (any-reg) :target args) (args-arg :scs (any-reg) :target args)
(function-arg :scs (descriptor-reg) :target lexenv) (function-arg :scs (descriptor-reg) :target lexenv)
(ocfp-arg :scs (any-reg) :target ocfp) (ocfp-arg :scs (any-reg) :target ocfp)
(lra-arg :scs (descriptor-reg) :target lra)) (lra-arg :scs (#-gengc descriptor-reg #+gengc any-reg) :target lra))
(:temporary (:sc any-reg :offset nl0-offset :from (:argument 0)) args) (:temporary (:sc any-reg :offset nl0-offset :from (:argument 0)) args)
(:temporary (:sc any-reg :offset lexenv-offset :from (:argument 1)) lexenv) (:temporary (:sc any-reg :offset lexenv-offset :from (:argument 1)) lexenv)
......
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