From 1ef1aac7257895837ff23dfcc05c0fceac43e659 Mon Sep 17 00:00:00 2001 From: Nathan Froyd Date: Sun, 9 Apr 2006 16:48:18 +0000 Subject: [PATCH] 0.9.11.26: MORE MICRO-OPTIMIZATION ... slightly smaller (ASH ) => VOP on the x86. --- src/compiler/x86/arith.lisp | 2 +- version.lisp-expr | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/compiler/x86/arith.lisp b/src/compiler/x86/arith.lisp index 7670970..b19fcb3 100644 --- a/src/compiler/x86/arith.lisp +++ b/src/compiler/x86/arith.lisp @@ -614,7 +614,7 @@ ;; at the low five bits of the result. (inst sar result (min 31 (- amount))) ;; Fixnum correction. - (inst and result #xfffffffc))))))) + (inst and result (lognot fixnum-tag-mask)))))))) (define-vop (fast-ash-left/fixnum=>fixnum) (:translate ash) diff --git a/version.lisp-expr b/version.lisp-expr index 2b9ee4a..bcb2eb5 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.11.25" +"0.9.11.26" -- 1.7.10.4