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

Fixed unbind-to-here to not dereference past the end of the binding stack.

parent 6380f554
No related branches found
No related tags found
No related merge requests found
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
;;; Scott Fahlman or slisp-group@cs.cmu.edu. ;;; Scott Fahlman or slisp-group@cs.cmu.edu.
;;; ;;;
(ext:file-comment (ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/cell.lisp,v 1.69 1993/03/13 12:35:46 ram Exp $") "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/mips/cell.lisp,v 1.70 1993/04/28 01:19:54 wlott Exp $")
;;; ;;;
;;; ********************************************************************** ;;; **********************************************************************
;;; ;;;
...@@ -201,6 +201,7 @@ ...@@ -201,6 +201,7 @@
(done (gen-label))) (done (gen-label)))
(move where arg) (move where arg)
(inst beq where bsp-tn done) (inst beq where bsp-tn done)
(inst nop)
(emit-label loop) (emit-label loop)
(loadw symbol bsp-tn (- binding-symbol-slot binding-size)) (loadw symbol bsp-tn (- binding-symbol-slot binding-size))
......
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