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

Moved the :single-value-return code location to where backtrace expects to

find it.  Added :save-p :compute-only so that the code locations can be
dumped.
parent e98a6f49
No related branches found
No related tags found
No related merge requests found
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
;;; Scott Fahlman (FAHLMAN@CMUC). ;;; Scott Fahlman (FAHLMAN@CMUC).
;;; ********************************************************************** ;;; **********************************************************************
;;; ;;;
;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/assembly/mips/support.lisp,v 1.7 1992/05/21 02:30:24 wlott Exp $ ;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/assembly/mips/support.lisp,v 1.8 1992/05/21 22:34:15 wlott Exp $
;;; ;;;
;;; This file contains the machine specific support routines needed by ;;; This file contains the machine specific support routines needed by
;;; the file assembler. ;;; the file assembler.
...@@ -35,9 +35,9 @@ ...@@ -35,9 +35,9 @@
(inst j (make-fixup ',name :assembly-routine)) (inst j (make-fixup ',name :assembly-routine))
(inst nop) (inst nop)
(emit-return-pc lra-label) (emit-return-pc lra-label)
(note-this-location ,vop :single-value-return)
(move csp-tn ocfp-tn) (move csp-tn ocfp-tn)
(inst nop) (inst nop)
(note-this-location ,vop :single-value-return)
(inst entry-point) (inst entry-point)
(inst compute-code-from-lra code-tn code-tn (inst compute-code-from-lra code-tn code-tn
lra-label ,temp) lra-label ,temp)
...@@ -49,7 +49,8 @@ ...@@ -49,7 +49,8 @@
:from (:eval 0) :to (:eval 1)) :from (:eval 0) :to (:eval 1))
,lra) ,lra)
(:temporary (:scs (control-stack) :offset nfp-save-offset) (:temporary (:scs (control-stack) :offset nfp-save-offset)
,nfp-save))))) ,nfp-save)
(:save-p :compute-only)))))
(:none (:none
(values (values
`((inst j (make-fixup ',name :assembly-routine)) `((inst j (make-fixup ',name :assembly-routine))
......
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