<div class="gmail_quote">On Thu, Aug 12, 2010 at 4:54 PM, Alexander Gavrilov <span dir="ltr"><<a href="mailto:angavrilov@gmail.com">angavrilov@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">

 (loop for i fixnum from 0 below (- (min (array-total-size arr1)<br>
                                          (array-total-size arr2))<br>
                                     3) by 4</blockquote></div><div><br></div>This is the code that gets normally inlined. Can you try adding the following function to the same file and see whether it gets inlined by your modified compiler?<div>

<br></div><div><div>(defun foo (arr1 arr2)</div><div>  (declare (optimize (safety 0) (speed 3)))</div><div>  (loop for i fixnum from 0 below (- (min (array-total-size arr1)</div><div>                                          (array-total-size arr2))</div>

<div>                                     3) by 4</div><div>     collect (aref arr1 i)))</div><div><br></div><div>Juanjo</div><br>-- <br>Instituto de Física Fundamental, CSIC<br>c/ Serrano, 113b, Madrid 28006 (Spain) <br>

<a href="http://juanjose.garciaripoll.googlepages.com">http://juanjose.garciaripoll.googlepages.com</a><br>
</div>