From ba16d9d9e3e65a77487a68dda3ef37e5d85e99c9 Mon Sep 17 00:00:00 2001 From: ram <ram> Date: Sun, 14 Mar 1993 19:32:38 +0000 Subject: [PATCH] Fixed a bug in type inference which seems to have generally prevented anything from being inferred about function result types. --- compiler/ir1opt.lisp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compiler/ir1opt.lisp b/compiler/ir1opt.lisp index f0284063e..bef62b565 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.57 1993/02/03 17:53:04 ram Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/ir1opt.lisp,v 1.58 1993/03/14 19:32:38 ram Exp $") ;;; ;;; ********************************************************************** ;;; @@ -570,7 +570,7 @@ (let ((return (lambda-return fun))) (when return (when (node-reoptimize return) - (setf (node-reoptimize node) nil) + (setf (node-reoptimize return) nil) (find-result-type return)) (res (return-result-type return))))) -- GitLab