From 9ffd0c0577d5a03cba38dd82fdff8b7311184cfe Mon Sep 17 00:00:00 2001 From: ram <ram> Date: Thu, 4 Jun 1992 15:52:51 +0000 Subject: [PATCH] Note the environment start location as :non-local-entry. This is maybe kind of a hack, or we should rename the kind, or something. But it is like :non-local-entry, in that the :block-start location isn't a good place to stop, and shouldn't be dumped. --- compiler/pseudo-vops.lisp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/compiler/pseudo-vops.lisp b/compiler/pseudo-vops.lisp index 8d9266423..ce16eaf92 100644 --- a/compiler/pseudo-vops.lisp +++ b/compiler/pseudo-vops.lisp @@ -7,7 +7,7 @@ ;;; Scott Fahlman or slisp-group@cs.cmu.edu. ;;; (ext:file-comment - "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/pseudo-vops.lisp,v 1.5 1991/02/20 14:59:31 ram Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/pseudo-vops.lisp,v 1.6 1992/06/04 15:52:51 ram Exp $") ;;; ;;; ********************************************************************** ;;; @@ -24,8 +24,10 @@ ;;; (define-vop (note-environment-start) (:info start-lab) + (:vop-var vop) (:generator 0 - (emit-label start-lab))) + (emit-label start-lab) + (note-debug-location vop start-lab :non-local-entry))) ;;; Call a move function. Used for register save/restore and spilling. -- GitLab