1.0.32.12: Fix slot-value on specialized parameters in SVUC methods
[sbcl.git] / src / compiler / generic / early-vm.lisp
index 2a39fc3..feb1abd 100644 (file)
   "the fixnum closest in value to negative infinity")
 
 (def!constant most-positive-exactly-single-float-fixnum
-  (min #xffffff most-positive-fixnum))
+  (min #xffffff sb!xc:most-positive-fixnum))
 (def!constant most-negative-exactly-single-float-fixnum
-  (max #x-ffffff most-negative-fixnum))
+  (max #x-ffffff sb!xc:most-negative-fixnum))
 (def!constant most-positive-exactly-double-float-fixnum
-  (min #x1fffffffffffff most-positive-fixnum))
+  (min #x1fffffffffffff sb!xc:most-positive-fixnum))
 (def!constant most-negative-exactly-double-float-fixnum
-  (max #x-1fffffffffffff most-negative-fixnum))
+  (max #x-1fffffffffffff sb!xc:most-negative-fixnum))
 
 ;;;; Point where continuous area starting at dynamic-space-start bumps into
 ;;;; next space.