Controls the use of strength reduction optimization.
#pragma opt_strength_reduction on | off | reset
If you enable this pragma, the compiler replaces array element arithmetic instructions with pointer arithmetic instructions to make loops faster.
This pragma does not correspond to any panel setting in the Language panel. To check this setting, use __option (opt_strength_reduction), described in Checking Pragma Settings. By default, this pragma is disabled.