From a97efc9f60cd7fad8c9c2fe25d73a6b8e20575be Mon Sep 17 00:00:00 2001 From: Juho Snellman Date: Tue, 5 Jun 2007 09:41:29 +0000 Subject: [PATCH] 1.0.6.21: get rid of a runtime compiler note in the PCL cache code * For some reason appeared only on x86-64, not x86. --- src/pcl/cache.lisp | 3 ++- version.lisp-expr | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/pcl/cache.lisp b/src/pcl/cache.lisp index 635799d..7985c5c 100644 --- a/src/pcl/cache.lisp +++ b/src/pcl/cache.lisp @@ -198,7 +198,8 @@ `(mixf ,n-index (hash-layout-or ,layout-var (go ,miss-tag)))) (cdr layout-vars)) ;; align with cache lines - (setf ,n-index (logand (* ,line-size ,n-index) (cache-mask ,cache-var))) + (setf ,n-index (logand (the fixnum (* ,n-index ,line-size)) + (cache-mask ,cache-var))) (let ((,n-depth (cache-depth ,cache-var)) (,n-pointer ,n-index) (,n-mask (cache-mask ,cache-var))) diff --git a/version.lisp-expr b/version.lisp-expr index d30f135..1ac083d 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.6.20" +"1.0.6.21" -- 1.7.10.4