* Define in terms of n-positive-fixnum-bits, not some relation between
n-word-bits and n-lowtag-bits.
(def!constant widetag-mask (1- (ash 1 n-widetag-bits)))
(def!constant sb!xc:most-positive-fixnum
- (1- (ash 1 (- n-word-bits n-lowtag-bits)))
+ (1- (ash 1 n-positive-fixnum-bits))
#!+sb-doc
"the fixnum closest in value to positive infinity")
(def!constant sb!xc:most-negative-fixnum
- (ash -1 (- n-word-bits n-lowtag-bits))
+ (ash -1 n-positive-fixnum-bits)
#!+sb-doc
"the fixnum closest in value to negative infinity")