From d2f5999ec2882ba9d69656f5568705e5fd200ba1 Mon Sep 17 00:00:00 2001 From: Christophe Rhodes Date: Mon, 18 Sep 2006 14:26:49 +0000 Subject: [PATCH] 0.9.16.37: Minor fixups ... fix building on x86-64 (delete some extra parens...) ... make funcallable-standard-objects (including generic functions) properly inspectable again, after the change of the superclasses' order. --- src/code/inspect.lisp | 6 ++++++ src/compiler/x86-64/call.lisp | 2 +- version.lisp-expr | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/src/code/inspect.lisp b/src/code/inspect.lisp index 1aebddb..c736f5a 100644 --- a/src/code/inspect.lisp +++ b/src/code/inspect.lisp @@ -198,6 +198,12 @@ evaluated expressions. t (inspected-standard-object-elements object))) +(defmethod inspected-parts ((object sb-mop:funcallable-standard-object)) + (values (format nil "The object is a ~S of type ~S.~%" + 'sb-mop:funcallable-standard-object (type-of object)) + t + (inspected-standard-object-elements object))) + (defmethod inspected-parts ((object condition)) (values (format nil "The object is a CONDITION of type ~S.~%" (type-of object)) diff --git a/src/compiler/x86-64/call.lisp b/src/compiler/x86-64/call.lisp index f4125b0..94dab21 100644 --- a/src/compiler/x86-64/call.lisp +++ b/src/compiler/x86-64/call.lisp @@ -1269,7 +1269,7 @@ (:generator 4 (inst mov value (make-ea :qword :base object :index index)) (inst mov keyword (make-ea :qword :base object :index index - :disp n-word-bytes)))))) + :disp n-word-bytes)))) ;;; Turn more arg (context, count) into a list. (defoptimizer (%listify-rest-args stack-allocate-result) ((&rest args)) diff --git a/version.lisp-expr b/version.lisp-expr index 82370fd..c4ab8bb 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.16.36" +"0.9.16.37" -- 1.7.10.4