From a277c8ce1edb09ef3258ae4a4b75e20c3dc226dd Mon Sep 17 00:00:00 2001 From: toy <toy> Date: Wed, 29 Jan 2003 02:47:31 +0000 Subject: [PATCH] Entomotomy bug defknowns-for-bit-array-operators-wrong: Defknowns for bit-and and friends were disallowing an explicit optional arg of NIL. Allow it. --- compiler/fndb.lisp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/compiler/fndb.lisp b/compiler/fndb.lisp index 608d7215b..f5d4e25ac 100644 --- a/compiler/fndb.lisp +++ b/compiler/fndb.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/fndb.lisp,v 1.101 2003/01/29 02:16:31 toy Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/fndb.lisp,v 1.102 2003/01/29 02:47:31 toy Exp $") ;;; ;;; ********************************************************************** ;;; @@ -719,12 +719,12 @@ (defknown (bit-and bit-ior bit-xor bit-eqv bit-nand bit-nor bit-andc1 bit-andc2 bit-orc1 bit-orc2) - ((array bit) (array bit) &optional (or (array bit) (member t))) + ((array bit) (array bit) &optional (or (array bit) (member nil t))) (array bit) (foldable) #|:derive-type #'result-type-last-arg|#) -(defknown bit-not ((array bit) &optional (or (array bit) (member t))) +(defknown bit-not ((array bit) &optional (or (array bit) (member nil t))) (array bit) (foldable) #|:derive-type #'result-type-last-arg|#) -- GitLab