From ab8af455bf5216f2ba6a5beaef76d0f751fd911d Mon Sep 17 00:00:00 2001 From: wlott <wlott> Date: Mon, 26 Feb 1990 21:15:28 +0000 Subject: [PATCH] Added static symbols needed for non-local-exit: lisp::*current-catch-block* and lisp::*eval-stack-top*. --- compiler/mips/parms.lisp | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/compiler/mips/parms.lisp b/compiler/mips/parms.lisp index 9845b1382..c0682428d 100644 --- a/compiler/mips/parms.lisp +++ b/compiler/mips/parms.lisp @@ -7,7 +7,7 @@ ;;; Scott Fahlman (FAHLMAN@CMUC). ;;; ********************************************************************** ;;; -;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/parms.lisp,v 1.20 1990/02/26 20:46:57 ch Exp $ +;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/parms.lisp,v 1.21 1990/02/26 21:15:28 wlott Exp $ ;;; ;;; This file contains some parameterizations of various VM ;;; attributes for the MIPS. This file is separate from other stuff so @@ -240,7 +240,12 @@ lisp::*saved-control-stack-pointer* lisp::*saved-binding-stack-pointer* lisp::*saved-allocation-pointer* - lisp::*saved-flags-register*)) + lisp::*saved-flags-register* + + ;; Things needed for non-local-exit. + lisp::*current-catch-block* + lisp::*eval-stack-top* + )) (defun static-symbol-p (symbol) (member symbol static-symbols)) -- GitLab