SPRUIG8J January 2018 – March 2024
advice #35000-D: (Performance) Consider adding the restrict qualifier to the declaration of "variable" to improve loop performance.
This advice identifies opportunities
for qualifying function parameters with restrict
if doing so is
likely to improve loop performance. Make sure that restrict-qualified pointers do
not violate any of the limitations on such pointers; no other pointer can be used to
access the object to which a restricted pointer points.
To see more information on using restrict, refer to Section 5.5.4