1 /* { dg-do compile } */
2 
3 
f(int ** __restrict a,int ** __restrict b)4 int f(int **__restrict a, int ** __restrict b)
5 {
6   int i;
7   for(i= 0;i<32;i++)
8     a[i] = b[i] + 1;
9 }
10 
11 
12