From c2a1fc60b9b7c0abf6a1501d0bd5aafc61367379 Mon Sep 17 00:00:00 2001 From: Nikodemus Siivola Date: Sat, 7 Aug 2004 16:52:22 +0000 Subject: [PATCH] 0.8.13.37: Logically not quite * Fix misplaced paren in the deftransform for SB-KERNEL:WORD-LOGICAL-NOT. No new tests, as this is thoroughly caught by the old ones. --- src/compiler/generic/vm-tran.lisp | 2 +- version.lisp-expr | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/compiler/generic/vm-tran.lisp b/src/compiler/generic/vm-tran.lisp index 6a3e942..bf50175 100644 --- a/src/compiler/generic/vm-tran.lisp +++ b/src/compiler/generic/vm-tran.lisp @@ -505,7 +505,7 @@ ;;; generate efficient code. (define-source-transform word-logical-not (x) - `(logand (lognot (the sb!vm:word ,x) #.(1- (ash 1 sb!vm:n-word-bits))))) + `(logand (lognot (the sb!vm:word ,x)) #.(1- (ash 1 sb!vm:n-word-bits)))) (deftransform word-logical-and ((x y)) '(logand x y)) diff --git a/version.lisp-expr b/version.lisp-expr index 0e1bd41..913333d 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.36" +"0.8.13.37" -- 1.7.10.4