Update of /cvsroot/sbcl/sbcl
In directory sc8-pr-cvs1:/tmp/cvs-serv28592
Modified Files:
BUGS package-data-list.lisp-expr version.lisp-expr
Log Message:
0.8.2.14:
* DERIVE-TYPE optimizer for AREF does not try to put a type
assertion on its result;
* fix type declaration for INTEGER-DECODE-FLOAT;
* cross-compiler vertions of MAKE-{SINGLE,DOUBLE}-FLOAT now
work with denormalized numbers;
... since this change causes bootstrapping problems under
previous versions of SBCL, replace a reference to
LEAST-POSITIVE-DOUBLE-FLOAT with a code, constructing this
number.
Index: BUGS
===================================================================
RCS file: /cvsroot/sbcl/sbcl/BUGS,v
retrieving revision 1.324
retrieving revision 1.325
diff -u -d -r1.324 -r1.325
--- BUGS 21 Jul 2003 06:09:55 -0000 1.324
+++ BUGS 3 Aug 2003 11:32:29 -0000 1.325
@@ -1058,6 +1058,9 @@
(list x y)))
(funcall (eval #'foo) 1)))
+269:
+ SCALE-FLOAT should accept any integer for its second argument.
+
DEFUNCT CATEGORIES OF BUGS
IR1-#:
These labels were used for bugs related to the old IR1 interpreter.
Index: package-data-list.lisp-expr
===================================================================
RCS file: /cvsroot/sbcl/sbcl/package-data-list.lisp-expr,v
retrieving revision 1.236
retrieving revision 1.237
diff -u -d -r1.236 -r1.237
--- package-data-list.lisp-expr 30 Jul 2003 16:07:45 -0000 1.236
+++ package-data-list.lisp-expr 3 Aug 2003 11:32:29 -0000 1.237
@@ -1079,8 +1079,10 @@
"FDEFINITION-OBJECT"
"FDOCUMENTATION" "FILENAME"
"FIND-AND-INIT-OR-CHECK-LAYOUT"
- "FLOAT-EXPONENT" "FLOAT-FORMAT-DIGITS" "FLOAT-FORMAT-NAME"
- "FLOAT-FORMAT-MAX" "FLOATING-POINT-EXCEPTION"
+ "FLOAT-EXPONENT"
+ "FLOAT-FORMAT-DIGITS" "FLOAT-FORMAT-NAME" "FLOAT-FORMAT-MAX"
+ "FLOAT-INT-EXPONENT"
+ "FLOATING-POINT-EXCEPTION"
"FORM"
"FORMAT-CONTROL"
"*FREE-INTERRUPT-CONTEXT-INDEX*" "FUNCALLABLE-INSTANCE-P"
Index: version.lisp-expr
===================================================================
RCS file: /cvsroot/sbcl/sbcl/version.lisp-expr,v
retrieving revision 1.1142
retrieving revision 1.1143
diff -u -d -r1.1142 -r1.1143
--- version.lisp-expr 2 Aug 2003 15:58:06 -0000 1.1142
+++ version.lisp-expr 3 Aug 2003 11:32:29 -0000 1.1143
@@ -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.2.13"
+"0.8.2.14"
|