From 2c84ef5c1d09f73857d64880fe8b889fc395c0d5 Mon Sep 17 00:00:00 2001 From: Nikodemus Siivola Date: Sat, 10 Dec 2011 01:12:27 +0200 Subject: [PATCH] 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. --- src/compiler/seqtran.lisp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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)))))) -- 1.7.10.4