Hello,
I'm using C6455. Does it automatically unroll the loop when it knows exactly the number of iteration?
Ex:
for(i=0; i<10; i++)
{
..........
}
Does it unroll the loop 10 times?
Any documents for code optimization for this kind of processor? or general code optimization is good enough?
Thanks,
Pete.