Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gcc.dg / c99-restrict-2.c
blob2adc5f2b36f6fb59ef446c77d9e0b5d262a523a6
1 /* Test for restrict: in C99 only. Test handling of arrays of restricted
2 pointers. */
3 /* Origin: Joseph Myers <jsm@polyomino.org.uk> */
4 /* { dg-do compile } */
5 /* { dg-options "-std=iso9899:1999 -pedantic-errors" } */
7 typedef int *ipa[2];
9 int *restrict x[2];
10 restrict ipa y;
12 void f(int *restrict a[2], restrict ipa b, int *restrict c[restrict]);