Function
#pragma NO_LOOP_UNROLL
None
None
None
Using this pragma prevents loop unrolling for the next function definition (as shown in the following listing), even when the -Cu command line option is given.
#pragma NO_LOOP_UNROLL void F(void) { for (i=0; i<5; i++) { // loop is NOT unrolled ... }
#pragma LOOP_UNROLL: Force Loop Unrolling
-Oi: Inlining compiler option