Convert an ASSERT into an AVER in INIT-LIVE-TNS
authorPaul Khuong <pvk@pvk.ca>
Tue, 12 Nov 2013 22:55:38 +0000 (17:55 -0500)
committerPaul Khuong <pvk@pvk.ca>
Mon, 2 Dec 2013 03:44:43 +0000 (22:44 -0500)
src/compiler/pack.lisp

index cc5afac..60d8565 100644 (file)
                 ((= offset end))
               (declare (type index offset end))
               (setf (svref (finite-sb-live-tns sb) offset) tn))
-            (assert (and (null (tn-reads tn))
-                         (null (tn-writes tn))))))))
+            (aver (and (null (tn-reads tn)) (null (tn-writes tn))))))))
 
   (setq *live-block* block)
   (setq *live-vop* (ir2-block-last-vop block))