0.6.8.9:
[sbcl.git] / src / code / bit-bash.lisp
index 1a9752d..f9611cf 100644 (file)
@@ -13,8 +13,6 @@
 \f
 ;;;; constants and types
 
-(eval-when (:compile-toplevel :load-toplevel :execute)
-
 (defconstant unit-bits sb!vm:word-bits
   #!+sb-doc
   "The number of bits to process at a time.")
@@ -23,6 +21,9 @@
   #!+sb-doc
   "The maximum number of bits that can be delt with during a single call.")
 
+;;; FIXME: Do we really need EVAL-WHEN around these DEFTYPEs?
+(eval-when (:compile-toplevel :load-toplevel :execute)
+
 (deftype unit ()
   `(unsigned-byte ,unit-bits))