From 3a23edb0bbfa1d34c2b3fbfcef771ccbbbc79a6b Mon Sep 17 00:00:00 2001 From: Christophe Rhodes Date: Mon, 16 Aug 2004 23:57:26 +0000 Subject: [PATCH] 0.8.13.68: Fix for alpha backend bug revealed by new bit-vector.impure-cload COUNT test ... stronger restriction on using immediates in data-vector-set/c for small arrays --- src/compiler/alpha/array.lisp | 2 +- version.lisp-expr | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/compiler/alpha/array.lisp b/src/compiler/alpha/array.lisp index 35568d8..ec52659 100644 --- a/src/compiler/alpha/array.lisp +++ b/src/compiler/alpha/array.lisp @@ -276,7 +276,7 @@ bits))) (* extra ,bits)))) - (cond ((< value #x10000) + (cond ((< value #x100) (inst bis old value old)) (t (inst li value temp) diff --git a/version.lisp-expr b/version.lisp-expr index cea48f3..2c9a803 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.8.13.67" +"0.8.13.68" -- 1.7.10.4