From 06f40be6c8bf4ea89c07f1b0942641d74db12dfe Mon Sep 17 00:00:00 2001 From: ram <ram> Date: Sat, 25 Jan 1992 14:05:24 +0000 Subject: [PATCH] In FIND-RESULT-TYPE, don't call MAYBE-CONVERT-TAIL-LOCAL-CALL on MV-combinations. --- compiler/ir1opt.lisp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/compiler/ir1opt.lisp b/compiler/ir1opt.lisp index 11a9e14b2..62216ad30 100644 --- a/compiler/ir1opt.lisp +++ b/compiler/ir1opt.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/ir1opt.lisp,v 1.38 1991/12/20 20:47:56 ram Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/ir1opt.lisp,v 1.39 1992/01/25 14:05:24 ram Exp $") ;;; ;;; ********************************************************************** ;;; @@ -480,7 +480,8 @@ (immediately-used-p result use)) (when (merge-tail-sets use tails) (setq retry t)) - (maybe-convert-tail-local-call use)) + (when (combination-p use) + (maybe-convert-tail-local-call use))) (t (use-union (node-derived-type use))))) (let ((int (values-type-intersection -- GitLab