0.pre7.56:
[sbcl.git] / src / compiler / x86 / move.lisp
index 6edc3fc..e18721d 100644 (file)
     (move eax x)
     (inst test al-tn 3)
     (inst jmp :z fixnum)
-    (loadw y eax bignum-digits-offset other-pointer-type)
+    (loadw y eax bignum-digits-offset other-pointer-lowtag)
     (inst jmp done)
     FIXNUM
     (inst sar eax 2)
          (emit-label bignum)
          (with-fixed-allocation
              (y bignum-type (+ bignum-digits-offset 1) node)
-           (storew x y bignum-digits-offset other-pointer-type))
+           (storew x y bignum-digits-offset other-pointer-lowtag))
          (inst jmp done)))))
 (define-move-vop move-from-signed :move
   (signed-reg) (descriptor-reg))
         (pseudo-atomic
          (allocation alloc (pad-data-block (+ bignum-digits-offset 2)) node)
          (storew y alloc)
-         (inst lea y (make-ea :byte :base alloc :disp other-pointer-type))
-         (storew x y bignum-digits-offset other-pointer-type))
+         (inst lea y (make-ea :byte :base alloc :disp other-pointer-lowtag))
+         (storew x y bignum-digits-offset other-pointer-lowtag))
         (inst jmp done)))))
 (define-move-vop move-from-unsigned :move
   (unsigned-reg) (descriptor-reg))