0.7.9.7:
[sbcl.git] / src / cold / warm.lisp
index 1292f46..91bd152 100644 (file)
 \f
 ;;;; general warm init compilation policy
 
-#+(and sbcl alpha) ; SBCL/Alpha uses stop-and-copy, and Alphas have lotso RAM.
-(progn
-  (sb!ext::gc-off)
-  (setf (sb!ext::bytes-consed-between-gcs) (* 30 (expt 10 6)))
-  (sb!ext::gc-on)
-  (sb!ext::gc))
-
 
 (proclaim '(optimize (compilation-speed 1)
                     (debug #+sb-show 2 #-sb-show 1)
                "src/pcl/macros"
                 "src/pcl/compiler-support"
                "src/pcl/low"
+                "src/pcl/slot-name"
                "src/pcl/defclass"
                "src/pcl/defs"
                "src/pcl/fngen"
 ;;; through the cold boot process. They need to be set somewhere. Maybe the
 ;;; easiest thing to do is to read them out of package-data-list.lisp-expr
 ;;; now?
-\f
-;;;; resetting compilation policy to neutral values in preparation for
-;;;; SAVE-LISP-AND-DIE as final SBCL core
-
-(sb-int:/show "setting compilation policy to neutral values")
-(proclaim '(optimize (compilation-speed 1)
-                    (debug 1)
-                    (inhibit-warnings 1)
-                    (safety 1)
-                    (space 1)
-                    (speed 1)))