0.7.3.6:
[sbcl.git] / src / compiler / x86 / type-vops.lisp
index f780568..62f09a3 100644 (file)
@@ -68,9 +68,9 @@
       (error "At least one type must be supplied for TEST-TYPE."))
     (cond
      (fixnump
-      (when (remove-if #'(lambda (x)
-                          (or (= x even-fixnum-lowtag)
-                              (= x odd-fixnum-lowtag)))
+      (when (remove-if (lambda (x)
+                        (or (= x even-fixnum-lowtag)
+                            (= x odd-fixnum-lowtag)))
                       lowtags)
        (error "can't mix fixnum testing with other lowtags"))
       (when function-p
                 3))
          ((sc-is value control-stack)
           (inst test (make-ea :byte :base ebp-tn
-                              :disp (- (* (1+ offset) sb!vm:word-bytes)))
+                              :disp (- (* (1+ offset) n-word-bytes)))
                 3))
          (t
           (inst test value 3)))))
 (def-simple-type-vops fixnump check-fixnum fixnum object-not-fixnum-error
   even-fixnum-lowtag odd-fixnum-lowtag)
 
-(def-type-vops functionp check-function function
-  object-not-function-error fun-pointer-lowtag)
+(def-type-vops functionp check-fun function
+  object-not-fun-error fun-pointer-lowtag)
 
 (def-type-vops listp check-list list object-not-list-error
   list-pointer-lowtag)