Prevent personality setting on Linux from going in circles.
[sbcl.git] / src / assembly / mips / arith.lisp
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)