From 985a8909f600eb1230640a575cf71e06fbc9ff1b Mon Sep 17 00:00:00 2001 From: toy <toy> Date: Sun, 25 Aug 2002 19:01:28 +0000 Subject: [PATCH] Apply Alexey Dejneka's compiler fix for SBCL bug 120a which says: The compiler incorrectly figures the return type of (DEFUN FOO (FRAME UP-FRAME) (IF (OR (NOT FRAME) T) FRAME "BAR")) as NIL. --- compiler/constraint.lisp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/compiler/constraint.lisp b/compiler/constraint.lisp index be49147bc..7625c5cd5 100644 --- a/compiler/constraint.lisp +++ b/compiler/constraint.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/constraint.lisp,v 1.23 2001/04/12 19:45:56 pw Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/constraint.lisp,v 1.24 2002/08/25 19:01:28 toy Exp $") ;;; ;;; ********************************************************************** ;;; @@ -138,7 +138,9 @@ ;;; (declaim (inline add-complement-constraints)) (defun add-complement-constraints (if fun x y not-p) - (when x + (when (and x + (not (eq (if-consequent if) + (if-alternative if)))) (add-test-constraint (if-consequent if) fun x y not-p) (add-test-constraint (if-alternative if) fun x y (not not-p))) (undefined-value)) -- GitLab