From fdfcf5096fca30cf6de49aec6e272f91b6003b19 Mon Sep 17 00:00:00 2001 From: wlott <wlott> Date: Wed, 20 Nov 1991 21:38:53 +0000 Subject: [PATCH] Fixed EXTRACT-FUNCTION-ARGS to reset the node-derived-type and continuation-asserted-type to *wild-type* so that the compiler doesn't decide that there is a type error. --- compiler/ir1util.lisp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/compiler/ir1util.lisp b/compiler/ir1util.lisp index bd532ab79..ea1cbe0a4 100644 --- a/compiler/ir1util.lisp +++ b/compiler/ir1util.lisp @@ -7,7 +7,7 @@ ;;; Scott Fahlman or slisp-group@cs.cmu.edu. ;;; (ext:file-comment - "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/ir1util.lisp,v 1.46 1991/11/18 12:52:21 wlott Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/ir1util.lisp,v 1.47 1991/11/20 21:38:53 wlott Exp $") ;;; ;;; ********************************************************************** ;;; @@ -1208,7 +1208,9 @@ (change-ref-leaf (continuation-use inside-fun) (find-free-function 'list "???")) (setf (combination-kind inside) :full) + (setf (node-derived-type inside) *wild-type*) (flush-dest cont) + (setf (continuation-asserted-type cont) *wild-type*) (undefined-value)))))) -- GitLab