* tree-loop-distribution.c (INCLUDE_ALGORITHM): New header file.
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / restrict-7.c
blobf7a68c7b03cfb514092d354cfb900de1577c9a7b
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fdump-tree-fre1" } */
4 int
5 f (int *__restrict__ *__restrict__ *__restrict__ a, int *b)
7 *b = 1;
8 ***a = 2;
9 return *b;
12 /* { dg-final { scan-tree-dump-times "return 1" 1 "fre1" } } */