From cb113a536ecd8baa8d0f80fb3dd4eeed9aa79d95 Mon Sep 17 00:00:00 2001 From: gerd <gerd> Date: Wed, 24 Sep 2003 09:48:18 +0000 Subject: [PATCH] (compile nil '(lambda (a b c) (block b6 (logeqv (rem c -6758) (rem b (max 44 (return-from b6 a))))))) => error nil is not of type c::node * src/compiler/macros.lisp (do-nodes-backwards): Stop at unused continuations. Reported by Paul Dietz. Ported from SBCL/Alexey Dejneka. --- compiler/macros.lisp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/compiler/macros.lisp b/compiler/macros.lisp index d23e84afe..7c4a7564a 100644 --- a/compiler/macros.lisp +++ b/compiler/macros.lisp @@ -5,7 +5,7 @@ ;;; Carnegie Mellon University, and has been placed in the public domain. ;;; (ext:file-comment - "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/macros.lisp,v 1.51 2003/04/19 20:52:42 gerd Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/macros.lisp,v 1.52 2003/09/24 09:48:18 gerd Exp $") ;;; ;;; ********************************************************************** ;;; @@ -680,8 +680,9 @@ (,n-last (block-last ,n-block))) (do* ((,cont-var (node-cont ,n-last) ,n-next) (,node-var ,n-last (continuation-use ,cont-var)) - (,n-next (node-prev ,node-var) (node-prev ,node-var))) - (()) + (,n-next (and ,node-var (node-prev ,node-var)) + (and ,node-var (node-prev ,node-var)))) + ((null ,node-var)) ,@body (when (eq ,n-next ,n-start) (return nil)))))) -- GitLab