From 423f476574213a7c0fe1b3aa1be16316fcf6282b Mon Sep 17 00:00:00 2001
From: gerd <gerd>
Date: Thu, 9 Oct 2003 14:00:37 +0000
Subject: [PATCH] 	(compile nil '(lambda (a c) 		(declare
 (notinline 1+)) 		(declare (optimize (speed 0))) 	
 (declare (optimize (debug 0))) 		(unwind-protect 	
     (block b5 (1+ (unwind-protect 	                           (if a
 (return-from b5 -30179678) c))))))) 	 => assertion failed (EQUAL
 (C::BYTE-BLOCK-INFO-START-STACK 	                           
 EXTENSIONS:INFO)

	* src/compiler/byte-comp.lisp (walk-block): #+nil an
	assertion.  Reported by Paul Dietz.
---
 compiler/byte-comp.lisp | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/compiler/byte-comp.lisp b/compiler/byte-comp.lisp
index 1d6983dff..26df5bc7f 100644
--- a/compiler/byte-comp.lisp
+++ b/compiler/byte-comp.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/byte-comp.lisp,v 1.41 2003/10/09 11:12:32 gerd Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/byte-comp.lisp,v 1.42 2003/10/09 14:00:37 gerd Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -855,6 +855,10 @@
 	  (t
 	   ;; We have already processed the successors of this block.  Just
 	   ;; make sure we thing the stack is the same now as before.
+	   ;;
+	   ;; Comment out the assertion because it doesn't hold if there
+	   ;; is an nlx-entry above.  I think.  --gerd 2003-10-09
+	   #+nil 
 	   (assert (equal (byte-block-info-start-stack info) stack)))))
   (undefined-value))
 
-- 
GitLab