SPRUI04F july 2015 – april 2023
advice #30002: Loop at line 8 cannot be scheduled efficiently, as it
contains an asm() statement. Try to replace the asm()
statement with C or intrinsic statement.
An asm statement inserted in a C code loop will disqualify the loop for software pipelining. Software-pipelining is a key optimization for achieving good performance. You may see reduced performance without software pipelining.
Replace the asm() statement with native C, or an intrinsic function call to prevent this from happening.