From: Nikodemus Siivola Date: Fri, 9 Dec 2011 23:12:27 +0000 (+0200) Subject: remove MUFFLE-CONDITION from the FILL transform X-Git-Url: http://repo.macrolet.net/gitweb/?a=commitdiff_plain;h=2c84ef5c1d09f73857d64880fe8b889fc395c0d5;p=sbcl.git remove MUFFLE-CONDITION from the FILL transform 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. --- diff --git a/src/compiler/seqtran.lisp b/src/compiler/seqtran.lisp index 5181c06..68306ee 100644 --- a/src/compiler/seqtran.lisp +++ b/src/compiler/seqtran.lisp @@ -649,8 +649,7 @@ :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))))))