Hi, On Thursday 24 January 2002 11:59, you wrote: > [...] > for (j=0; j<<Np; j++) I hope this is j<Np
> [...] > In my opinion the gcc compiler (version 2.95.2 19991024) refuses to > unroll the loops correctly when inserting the line "*(DU+j)=Element;" > into the outer for-loop. Does someone have an idea to solve this > problem? just .02cents: if you run gcc with # gcc -S test.c -o test.asm you get the asm-code of the c-program. So if you think gcc doesn't unroll the loop, you'll see very quickly if it is so or not... Greets Ineiti -- [rtl] --- To unsubscribe: echo "unsubscribe rtl" | mail [EMAIL PROTECTED] OR echo "unsubscribe rtl <Your_email>" | mail [EMAIL PROTECTED] -- For more information on Real-Time Linux see: http://www.rtlinux.org/
