Re: Re[4]: [Haskell-cafe] #haskell works

2007-12-15 Thread Tim Chevalier
On 12/15/07, Bulat Ziganshin [EMAIL PROTECTED] wrote: Hello Tim, Saturday, December 15, 2007, 7:10:26 AM, you wrote: with support of loop unrolling, GHC calls this inlining. 1. loop unrolling means generating several iterations of loop body, so that, say, 100 iterations of *p++=*q++

Re[4]: [Haskell-cafe] #haskell works

2007-12-14 Thread Bulat Ziganshin
Hello Tim, Saturday, December 15, 2007, 7:10:26 AM, you wrote: with support of loop unrolling, GHC calls this inlining. 1. loop unrolling means generating several iterations of loop body, so that, say, 100 iterations of *p++=*q++ becomes 25 iterations of *p++=*q++; *p++=*q++; *p++=*q++;