SLAU132V October 2004 – February 2020
void func2(int c[restrict], int d[restrict])
{
int i;
for(i = 0; i < 64; i++)
{
c[i] += d[i];
d[i] += 1;
}
}
For more information about restrict see http://processors.wiki.ti.com/index.php/Restrict_Type_Qualifier, especially the Performance Tuning with the "Restrict" Keyword article.