1 /* { dg-do compile } */
2 /* { dg-options "-fno-tree-ch -fno-tree-fre" } */
3 
4 void
foo(int * __restrict__ * r,int n)5 foo (int *__restrict__ * r, int n)
6 {
7   int *p;
8   for (p = *r; p < *r + n; p++)
9     ;
10 }
11