Update of /cvsroot/sbcl/sbcl
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10217
Modified Files:
NEWS version.lisp-expr
Log Message:
0.8.20.2:
Fix the compiler note emission from COUNT and EQUAL on bit-vectors.
(reported by Lutz Euler sbcl-devel 2005-02-16)
... rewrite (1- (ash 1 <integer 1 n-word-bits>)) as
(ash #xff...ff (- n-word-bits <integer 1 n-word-bits>))
Index: NEWS
===================================================================
RCS file: /cvsroot/sbcl/sbcl/NEWS,v
retrieving revision 1.725
retrieving revision 1.726
diff -u -d -r1.725 -r1.726
--- NEWS 1 Mar 2005 10:21:27 -0000 1.725
+++ NEWS 1 Mar 2005 10:54:36 -0000 1.726
@@ -10,6 +10,9 @@
are now more amenable to inspection by INSPECT.
* workaround for bug 354: XEPs no longer appear in backtraces unless
explicitly requested.
+ * fixed bug: COUNT and EQUAL no longer issue compiler efficiency
+ notes when operating on objects known to be SIMPLE-BIT-VECTORs.
+ (reported by Lutz Euler)
changes in sbcl-0.8.20 (0.9alpha.0?) relative to sbcl-0.8.19:
* fixed inspection of specialized arrays. (thanks to Simon Alexander)
Index: version.lisp-expr
===================================================================
RCS file: /cvsroot/sbcl/sbcl/version.lisp-expr,v
retrieving revision 1.2021
retrieving revision 1.2022
diff -u -d -r1.2021 -r1.2022
--- version.lisp-expr 1 Mar 2005 10:21:29 -0000 1.2021
+++ version.lisp-expr 1 Mar 2005 10:54:37 -0000 1.2022
@@ -17,4 +17,4 @@
;;; checkins which aren't released. (And occasionally for internal
;;; versions, especially for internal versions off the main CVS
;;; branch, it gets hairier, e.g. "0.pre7.14.flaky4.13".)
-"0.8.20.1"
+"0.8.20.2"
|