(belated 0.6.11.2 checkin notes):
[sbcl.git] / src / compiler / pack.lisp
index 5b90f5a..a001be5 100644 (file)
 
 (in-package "SB!C")
 
-(file-comment
-  "$Header$")
-
-;;; for debugging: Some parameters controlling which optimizations we attempt.
+;;; for debugging: some parameters controlling which optimizations we
+;;; attempt
 (defvar *pack-assign-costs* t)
 (defvar *pack-optimize-saves* t)
-;;; FIXME: Perhaps SB-FLUID should be renamed to SB-TWEAK and these should be
-;;; made conditional on SB-TWEAK.
+;;; FIXME: Perhaps SB-FLUID should be renamed to SB-TWEAK and these
+;;; should be made conditional on SB-TWEAK.
 
 (declaim (ftype (function (component) index) ir2-block-count))
 \f
 (defun pack (component)
   (assert (not *in-pack*))
   (let ((*in-pack* t)
-       (optimize (policy nil (or (>= speed cspeed) (>= space cspeed))))
+       (optimize (policy nil (or (>= speed compilation-speed)
+                                 (>= space compilation-speed))))
        (2comp (component-info component)))
     (init-sb-vectors component)