From 5885c4be636f159f0485e1cee601381ff16ed4e9 Mon Sep 17 00:00:00 2001 From: Christophe Rhodes Date: Tue, 7 Feb 2006 17:44:43 +0000 Subject: [PATCH] 0.9.9.21: Make disassembly on PowerPC (at least) less hideously ugly, by removing weird WORD #x00000000 overflowingness --- src/compiler/target-disassem.lisp | 2 +- version.lisp-expr | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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" -- 1.7.10.4