From: Christophe Rhodes Date: Tue, 7 Feb 2006 17:44:43 +0000 (+0000) Subject: 0.9.9.21: X-Git-Url: http://repo.macrolet.net/gitweb/?a=commitdiff_plain;h=5885c4be636f159f0485e1cee601381ff16ed4e9;p=sbcl.git 0.9.9.21: Make disassembly on PowerPC (at least) less hideously ugly, by removing weird WORD #x00000000 overflowingness --- diff --git a/src/compiler/target-disassem.lisp b/src/compiler/target-disassem.lisp index 01fd03b..ca73952 100644 --- a/src/compiler/target-disassem.lisp +++ b/src/compiler/target-disassem.lisp @@ -483,7 +483,7 @@ (multiple-value-bind (words bytes) (truncate alignment sb!vm:n-word-bytes) (when (> words 0) - (print-words words stream dstate)) + (print-inst (* words sb!vm:n-word-bytes) stream dstate)) (when (> bytes 0) (print-inst bytes stream dstate))) (print-bytes alignment stream dstate)) diff --git a/version.lisp-expr b/version.lisp-expr index 18332b0..763e043 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.9.20" +"0.9.9.21"