PR tree-optimization/81303
[official-gcc.git] / gcc / testsuite / gcc.dg / tree-ssa / restrict-6.c
blob7c5ed0119cb37c17eb28e84d388594011ae18ddd
1 /* { dg-do compile } */
2 /* { dg-options "-O -fdump-tree-fre1" } */
4 void
5 test (int *a, int *b, int * __restrict__ v)
7 *a = *v;
8 *b = *v;
11 /* { dg-final { scan-tree-dump-times "= \\*v" 1 "fre1" } } */