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

In KNOWN-RETURN, target the OLD-CONT and RETURN-PC into the temps so

that we don't always have to do a move.
parent f7cd0fd6
No related branches found
No related tags found
No related merge requests found
...@@ -480,8 +480,8 @@ default-value-5 ...@@ -480,8 +480,8 @@ default-value-5
;;; ;;;
(define-vop (known-return) (define-vop (known-return)
(:args (:args
(old-fp) (old-fp :target old-fp-temp)
(return-pc) (return-pc :target return-pc-temp)
(vals :more t)) (vals :more t))
(:temporary (:sc descriptor-reg :from (:argument 0)) old-fp-temp) (:temporary (:sc descriptor-reg :from (:argument 0)) old-fp-temp)
(:temporary (:sc descriptor-reg :from (:argument 1)) return-pc-temp) (:temporary (:sc descriptor-reg :from (:argument 1)) return-pc-temp)
......
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