0.6.12.4:
[sbcl.git] / src / code / dyncount.lisp
index 744cf74..d14727b 100644 (file)
@@ -98,7 +98,8 @@ comments from CMU CL:
 (deftype count-vector () '(simple-array double-float (2)))
 (defstruct (vop-stats
            (:constructor %make-vop-stats (name))
-           (:constructor make-vop-stats-key))
+           (:constructor make-vop-stats-key)
+           (:copier nil))
   (name (required-argument) :type simple-string)
   (data (make-array 2 :element-type 'double-float) :type count-vector))
 
@@ -531,7 +532,6 @@ comments from CMU CL:
         (compared (if compare
                       (compare-stats compensated compare)
                       compensated))
-        (*gc-verbose* nil)
         (*gc-notify-stream* nil))
     (multiple-value-bind (total-count total-cost) (cost-summary compensated)
       (multiple-value-bind (compare-total-count compare-total-cost)