From 3c302c03f195578f307c14b5181f5517027b0177 Mon Sep 17 00:00:00 2001 From: Christophe Rhodes Date: Tue, 29 Oct 2002 10:19:43 +0000 Subject: [PATCH] 0.7.9.11: Remove bogus #-CMU unoptimization (punting on SB-FLUID problems as described in BUG 206) --- src/compiler/array-tran.lisp | 5 +---- version.lisp-expr | 2 +- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/src/compiler/array-tran.lisp b/src/compiler/array-tran.lisp index fbc4a06..2194cfa 100644 --- a/src/compiler/array-tran.lisp +++ b/src/compiler/array-tran.lisp @@ -573,10 +573,7 @@ ,@(when offset-var `(,offset-var))) (if (not (array-header-p ,n-array)) (let ((,n-array ,n-array)) - ;; The #-CMU is because tonyms reported (sbcl-devel - ;; 2002-09-29) that this declaration confuses old CMU - ;; CL on x86 Debian 2.2. -- WHN 2002-10-02 - #-cmu (declare (type (simple-array * (*)) ,n-array)) + (declare (type (simple-array * (*)) ,n-array)) ,(once-only ((n-len `(length ,n-array)) (n-end `(or ,n-evalue ,n-len))) `(if (<= ,n-svalue ,n-end ,n-len) diff --git a/version.lisp-expr b/version.lisp-expr index 28728ea..45e891e 100644 --- a/version.lisp-expr +++ b/version.lisp-expr @@ -18,4 +18,4 @@ ;;; versions, especially for internal versions off the main CVS ;;; branch, it gets hairier, e.g. "0.pre7.14.flaky4.13".) -"0.7.9.10" +"0.7.9.11" -- 1.7.10.4