From: Nikodemus Siivola Date: Sun, 6 Nov 2005 18:10:40 +0000 (+0000) Subject: 0.9.6.28: missing NEWS entries, minor test fix X-Git-Url: http://repo.macrolet.net/gitweb/?a=commitdiff_plain;h=2b5f0aca85a1c61eba7eefab0bb286d98605f680;p=sbcl.git 0.9.6.28: missing NEWS entries, minor test fix ...that's all she sang... --- diff --git a/NEWS b/NEWS index aa9d6b8..41a3063 100644 --- a/NEWS +++ b/NEWS @@ -17,8 +17,12 @@ changes in sbcl-0.9.7 relative to sbcl-0.9.6: and Pascal Costanza) * bug fix: *COMPILE-FILE-PATHNAME* now contains the user's pathname merged with *DEFAULT-PATHNAME-DEFAULTS*. + * bug fix: callbacks on OS X now preserve stack-alignment. + (thanks to Cyrus Harmon) * enhancement: the x86-64 disassembler is much better at disassembling SSE instructions. (thanks to Lutz Euler) + * enhancement: CHECK-TYPE on a variable now allows type-inference + (thanks to Vincent Arkesteijn) * optimization: improved performance of EUC-JP external format. (thanks to NIIMI Satoshi) * optimization: performance improvements to IO on file streams of diff --git a/tests/compiler.pure.lisp b/tests/compiler.pure.lisp index 8febbbf..2d2bd98 100644 --- a/tests/compiler.pure.lisp +++ b/tests/compiler.pure.lisp @@ -1896,7 +1896,7 @@ (declare (optimize (speed 3))) (1+ x)))) ;; forced-to-do GENERIC-+, etc - (assert (= count0 4)) + (assert (> count0 0)) (handler-bind ((sb-ext:compiler-note (lambda (c) (incf count1)))) (compile nil '(lambda (x) (declare (optimize (speed 3))) diff --git a/version.lisp-expr b/version.lisp-expr index 9a43f72..26e9442 100644 --- a/version.lisp-expr +++ b/version.lisp-expr @@ -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.9.6.27" +"0.9.6.28"