0.9.16.9:
authorGabor Melis <mega@hotpop.com>
Fri, 1 Sep 2006 10:53:45 +0000 (10:53 +0000)
committerGabor Melis <mega@hotpop.com>
Fri, 1 Sep 2006 10:53:45 +0000 (10:53 +0000)
  * raw slots are of type lispobj instead of long for the sake of
    alpha

src/compiler/generic/genesis.lisp
version.lisp-expr

index c42fcf8..bd77bbb 100644 (file)
@@ -2820,9 +2820,9 @@ core and return a descriptor to it."
       (when (eq t (dsd-raw-type slot))
         (format t "    lispobj ~A;~%" (cstring (dsd-name slot)))))
     (unless (oddp (+ (dd-length dd) (dd-raw-length dd)))
-      (format t "    long raw_slot_padding;~%"))
+      (format t "    lispobj raw_slot_padding;~%"))
     (dotimes (n (dd-raw-length dd))
-      (format t "    long raw~D;~%" (- (dd-raw-length dd) n 1)))
+      (format t "    lispobj raw~D;~%" (- (dd-raw-length dd) n 1)))
     (format t "};~2%")
     (format t "#endif /* LANGUAGE_ASSEMBLY */~2%")))
 
index 442bc92..aeead58 100644 (file)
@@ -17,5 +17,5 @@
 ;;; 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.8"
+"0.9.16.9"