Function
#pragma LOOP_UNROLL
None
None
None
This pragma performs loop unrolling for the next function. This is the same as setting the -Cu option for a subsequent single function.
In the following example, the pragma unrolls a for loop.
#pragma LOOP_UNROLL void F(void) { for (i=0; i<5; i++) { // unrolling this loop ...