SPRUI04F july 2015 – april 2023
advice #30004: Loop at line 257 cannot be scheduled efficiently, as it
contains a switch statement. Try to rewrite loop.
There is a switch statement within the loop. A switch statement in a loop will disqualify the loop for software pipelining. Software-pipelining is a key optimization; you may see reduced performance without it.
Try and rewrite the loop without a switch statement.