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

When generating full-call return sites, wrap it with without-scheduling so

that the scheduler does not flush the nop.
parent 9e26145f
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/assembly/sparc/support.lisp,v 1.5 1992/05/21 22:36:26 wlott Exp $")
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/assembly/sparc/support.lisp,v 1.6 1992/07/31 21:47:10 wlott Exp $")
;;;
;;; **********************************************************************
;;;
......@@ -40,8 +40,9 @@
(inst nop)
(emit-return-pc lra-label)
(note-this-location ,vop :single-value-return)
(move csp-tn ocfp-tn)
(inst nop)
(without-scheduling ()
(move csp-tn ocfp-tn)
(inst nop))
(inst compute-code-from-lra code-tn code-tn
lra-label ,temp)
(when cur-nfp
......
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