1.0.9.24: Adjust assembly callers of WITH-FIXED-ALLOCATION.
authorThiemo Seufer <ths@networkno.de>
Sat, 1 Sep 2007 20:37:42 +0000 (20:37 +0000)
committerThiemo Seufer <ths@networkno.de>
Sat, 1 Sep 2007 20:37:42 +0000 (20:37 +0000)
src/assembly/mips/arith.lisp
version.lisp-expr

index 0bf279c..b409c34 100644 (file)
@@ -57,7 +57,8 @@
   ;; We did overflow, so do the bignum version
   (inst sra temp2 y n-fixnum-tag-bits)
   (inst addu temp temp1 temp2)
-  (with-fixed-allocation (res pa-flag temp2 bignum-widetag (1+ bignum-digits-offset))
+  (with-fixed-allocation (res pa-flag temp2 bignum-widetag
+                          (1+ bignum-digits-offset) nil)
     (storew temp res bignum-digits-offset other-pointer-lowtag))
   (lisp-return lra lip :offset 2)
 
   ;; We did overflow, so do the bignum version
   (inst sra temp2 y n-fixnum-tag-bits)
   (inst subu temp temp1 temp2)
-  (with-fixed-allocation (res pa-flag temp2 bignum-widetag (1+ bignum-digits-offset))
+  (with-fixed-allocation (res pa-flag temp2 bignum-widetag
+                          (1+ bignum-digits-offset) nil)
     (storew temp res bignum-digits-offset other-pointer-lowtag))
   (lisp-return lra lip :offset 2)
 
index d46708d..78d822f 100644 (file)
@@ -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".)
-"1.0.9.23"
+"1.0.9.24"