Controls the use of loop unrolling optimization.
#pragma opt_unroll_loops on | off | reset
If you enable this pragma, the compiler places multiple copies of a loop's statements inside a loop to improve its speed.
This pragma does not correspond to any panel setting in the Language panel. To check this setting, use __option (opt_unroll_loops), described in Checking Pragma Settings. By default, this pragma is disabled.