From cd94d2e445dfdc84806b19e363ee6421d57437ce Mon Sep 17 00:00:00 2001
From: gerd <gerd>
Date: Sat, 11 Oct 2003 11:58:28 +0000
Subject: [PATCH] 	ANSI test misc.14 	 => case failure in
 continuation-proven-type

	* src/compiler/ir1opt.lisp (continuation-proven-type):
	Return *empty-type* for unused continuations.
---
 compiler/ir1opt.lisp | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/compiler/ir1opt.lisp b/compiler/ir1opt.lisp
index c82933a09..543795800 100644
--- a/compiler/ir1opt.lisp
+++ b/compiler/ir1opt.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/ir1opt.lisp,v 1.79 2003/10/06 12:39:58 gerd Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/ir1opt.lisp,v 1.80 2003/10/11 11:58:28 gerd Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -67,7 +67,9 @@
 	       ((null current) res))
 	   *empty-type*)))
     (:inside-block
-     (node-derived-type (continuation-use cont)))))
+     (node-derived-type (continuation-use cont)))
+    (:unused
+     *empty-type*)))
 
 
 ;;; Continuation-Derived-Type  --  Interface
-- 
GitLab