C2901: Unrolling loop

[INFORMATION]

Description

A loop has been detected for unrolling. Either the loop has only one round, e.g.

  for(i=1; i<2; i++)

  

or loop unrolling was explicitly requested (Compiler Option -Cu or pragma LOOP_UNROLL) or the loop has been detected as empty as

  for(i=1; i<200; i++);

  
Tips

If it is a programming error, correct the loop condition.

See also