remove MUFFLE-CONDITION from the FILL transform
authorNikodemus Siivola <nikodemus@random-state.net>
Fri, 9 Dec 2011 23:12:27 +0000 (01:12 +0200)
committerNikodemus Siivola <nikodemus@random-state.net>
Sat, 10 Dec 2011 14:23:02 +0000 (16:23 +0200)
  It hides failure to stack allocate results of a MAKE-ARRAY with non-zero
  initial-element and non-T element-type.

  Part of lp#902351.

src/compiler/seqtran.lisp

index 5181c06..68306ee 100644 (file)
                                  :check-fill-pointer t)
                  (declare (type (simple-array ,element-type 1) data))
                  (declare (type index start end))
-                 (declare (optimize (safety 0) (speed 3))
-                          (muffle-conditions compiler-note))
+                 (declare (optimize (safety 0) (speed 3)))
                  (,basher ,bash-value data start (- end start))
                  seq)
               `((declare (type ,element-type item))))))