Skip to content
Snippets Groups Projects
Commit cd94d2e4 authored by gerd's avatar gerd
Browse files

ANSI test misc.14

	 => case failure in continuation-proven-type

	* src/compiler/ir1opt.lisp (continuation-proven-type):
	Return *empty-type* for unused continuations.
parent 4e34c8ae
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
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