PR target/58115
[official-gcc.git] / gcc / testsuite / c-c++-common / restrict-4.c
blob3a36def25ccb234389154813ab135725ba942bff
1 /* { dg-do compile } */
2 /* { dg-options "-O2 -fdump-tree-lim1-details" } */
4 struct Foo
6 int n;
7 int * __restrict__ p;
8 };
9 void bar(struct Foo f, int * __restrict__ q)
11 int i;
12 for (i = 0; i < f.n; ++i)
14 *q += f.p[i];
18 /* { dg-final { scan-tree-dump "Executing store motion" "lim1" } } */
19 /* { dg-final { cleanup-tree-dump "lim1" } } */