X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2Fcompiler%2Falpha%2Ftype-vops.lisp;h=21059674241722e6442af439d04f81ec9761610f;hb=8731c1a7c1a585d190151fa881050fb5e14c0616;hp=4b31c6aca4ed12b3ffafdcabccf888baa333b491;hpb=545fa4548b327804cf78afe38a2ecd94ced86162;p=sbcl.git diff --git a/src/compiler/alpha/type-vops.lisp b/src/compiler/alpha/type-vops.lisp index 4b31c6a..2105967 100644 --- a/src/compiler/alpha/type-vops.lisp +++ b/src/compiler/alpha/type-vops.lisp @@ -68,9 +68,9 @@ (error "must supply at least one type 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 @@ -233,8 +233,8 @@ (def-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) @@ -369,14 +369,14 @@ ;;; XXX #| (def-type-vops scavenger-hook-p nil nil nil - #-gengc 0 #+gengc scavenger-hook-type) + #!-gengc 0 #!+gengc scavenger-hook-type) |# (def-type-vops code-component-p nil nil nil code-header-widetag) (def-type-vops lra-p nil nil nil - #-gengc return-pc-header-widetag #+gengc 0) + #!-gengc return-pc-header-widetag #!+gengc 0) (def-type-vops fdefn-p nil nil nil fdefn-widetag)