CMSIS-DSP
CMSIS-DSP copied to clipboard
While loop replaced by for loop
https://github.com/ARM-software/CMSIS_5/pull/779
CMSIS-DSP is using while loop with decrementing counter.
For compiler point of view, it may be easier to use for loop and array indexing.
This is also related to this other github issue about pointer indexing : https://github.com/ARM-software/CMSIS-DSP/issues/20
Unfortunately, those changes are highly compiler dependent and not always giving more performant code.