From: Christophe Rhodes Date: Wed, 31 Dec 2008 13:27:21 +0000 (+0000) Subject: 1.0.24: release, will be tagged as sbcl_1_0_24 X-Git-Url: http://repo.macrolet.net/gitweb/?a=commitdiff_plain;h=56c7428e2bcb149dac575142d5d17e0b297f8670;p=sbcl.git 1.0.24: release, will be tagged as sbcl_1_0_24 Also, include build fix for sparc (Juho Snellman / Bruce O'Neel sbcl-devel 30-12-2008) and mark test :throw :no-such-tag as failing on x86/linux and x86-64/linux (because they do for me). --- diff --git a/NEWS b/NEWS index e874cb3..b63dea6 100644 --- a/NEWS +++ b/NEWS @@ -1,4 +1,5 @@ ;;;; -*- coding: utf-8; fill-column: 78 -*- +changes in sbcl-1.0.24 relative to 1.0.23: * new feature: ARRAY-STORAGE-VECTOR provides access to the underlying data vector of a multidimensional SIMPLE-ARRAY. * new feature: the system now signals a continuable error if standard diff --git a/src/compiler/sparc/array.lisp b/src/compiler/sparc/array.lisp index fc49181..8b8079f 100644 --- a/src/compiler/sparc/array.lisp +++ b/src/compiler/sparc/array.lisp @@ -26,7 +26,7 @@ (inst or header alloc-tn other-pointer-lowtag) (inst add ndescr rank (+ (* (1+ array-dimensions-offset) n-word-bytes) lowtag-mask)) - (inst andn ndescr 4) + (inst andn ndescr lowtag-mask) (inst add alloc-tn ndescr) (inst add ndescr rank (fixnumize (1- array-dimensions-offset))) (inst sll ndescr ndescr n-widetag-bits) diff --git a/tests/debug.impure.lisp b/tests/debug.impure.lisp index 22b05eb..aae3111 100644 --- a/tests/debug.impure.lisp +++ b/tests/debug.impure.lisp @@ -210,7 +210,9 @@ (and :x86 :openbsd) (and :x86 :sunos) (and :x86 :darwin) + (and :x86 :linux) (and :x86-64 :darwin) + (and :x86-64 :linux) (and :sparc :linux) :alpha :mips)) diff --git a/version.lisp-expr b/version.lisp-expr index f02c1b4..c7362af 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".) -"1.0.23.72" +"1.0.24"