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

In allocate-full-call-frame, don't save the result on the stack if

we didn't do anything.
parent efe037ac
No related branches found
No related tags found
No related merge requests found
......@@ -234,7 +234,8 @@
;;;
(define-vop (allocate-full-call-frame)
(:info nargs)
(:results (res :scs (word-pointer-reg)))
(:results (res :scs (word-pointer-reg)
:load-if (> nargs register-arg-count)))
(:generator 2
(when (> nargs register-arg-count)
(move res csp-tn)
......
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