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