Skip to content
Snippets Groups Projects
Commit d1c07ba9 authored by ram's avatar ram
Browse files

In local call VOPs, must load CALLEE-NFP with MAYBE-LOAD-STACK-TN, since it

might not be in a register.
parent 942c4288
No related branches found
No related tags found
No related merge requests found
......@@ -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.52.1.4 1993/02/08 23:18:59 ram Exp $")
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/call.lisp,v 1.52.1.5 1993/02/22 14:11:50 ram Exp $")
;;;
;;; **********************************************************************
;;;
......@@ -498,7 +498,7 @@ default-value-8
(store-stack-tn nfp-save cur-nfp))
(let ((callee-nfp (callee-nfp-tn callee)))
(when callee-nfp
(move callee-nfp nfp)))
(maybe-load-stack-tn callee-nfp nfp)))
(maybe-load-stack-tn cfp-tn fp)
#-gengc
(inst compute-lra-from-code
......@@ -540,7 +540,7 @@ default-value-8
(store-stack-tn nfp-save cur-nfp))
(let ((callee-nfp (callee-nfp-tn callee)))
(when callee-nfp
(move callee-nfp nfp)))
(maybe-load-stack-tn callee-nfp nfp)))
(maybe-load-stack-tn cfp-tn fp)
#-gengc
(inst compute-lra-from-code
......@@ -586,7 +586,7 @@ default-value-8
(store-stack-tn nfp-save cur-nfp))
(let ((callee-nfp (callee-nfp-tn callee)))
(when callee-nfp
(move callee-nfp nfp)))
(maybe-load-stack-tn callee-nfp nfp)))
(maybe-load-stack-tn cfp-tn fp)
#-gengc
(inst compute-lra-from-code
......
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