Update of /cvsroot/sbcl/sbcl
In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv7391
Modified Files:
package-data-list.lisp-expr version.lisp-expr
Log Message:
1.0.12.10: sequence optimizations: SUBSEQ, part 1
* Compile-time dispatch to VECTOR-SUBSEQ* for vectors
whose element-type or simplicity is uncertain.
* Compile-time dispatch to SB-SEQUENCE:SUBSEQ for generic
sequences.
Index: package-data-list.lisp-expr
===================================================================
RCS file: /cvsroot/sbcl/sbcl/package-data-list.lisp-expr,v
retrieving revision 1.429
retrieving revision 1.430
diff -u -d -r1.429 -r1.430
--- package-data-list.lisp-expr 30 Nov 2007 14:18:31 -0000 1.429
+++ package-data-list.lisp-expr 1 Dec 2007 17:05:38 -0000 1.430
@@ -1532,7 +1532,9 @@
"VALUES-TYPE-REST" "VALUES-TYPE-UNION"
"VALUES-TYPE-TYPES" "VALUES-TYPES"
"VALUES-TYPES-EQUAL-OR-INTERSECT" "VECTOR-T-P"
- "VECTOR-NIL-P" "VECTOR-TO-VECTOR*"
+ "VECTOR-NIL-P"
+ "VECTOR-SUBSEQ*"
+ "VECTOR-TO-VECTOR*"
"VECTOR-OF-CHECKED-LENGTH-GIVEN-LENGTH" "WITH-ARRAY-DATA"
"WITH-CIRCULARITY-DETECTION" "WRONG-NUMBER-OF-INDICES-ERROR"
Index: version.lisp-expr
===================================================================
RCS file: /cvsroot/sbcl/sbcl/version.lisp-expr,v
retrieving revision 1.3740
retrieving revision 1.3741
diff -u -d -r1.3740 -r1.3741
--- version.lisp-expr 30 Nov 2007 17:46:09 -0000 1.3740
+++ version.lisp-expr 1 Dec 2007 17:05:39 -0000 1.3741
@@ -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".)
-"1.0.12.9"
+"1.0.12.10"
|