rt_gccstream/gcc/testsuite/c-c++-common/restrict-4.c

20 lines
364 B
C

/* { dg-do compile } */
/* { dg-options "-O2 -fdump-tree-lim1-details" } */
struct Foo
{
int n;
int * __restrict__ p;
};
void bar(struct Foo f, int * __restrict__ q)
{
int i;
for (i = 0; i < f.n; ++i)
{
*q += f.p[i];
}
}
/* { dg-final { scan-tree-dump "Executing store motion" "lim1" } } */
/* { dg-final { cleanup-tree-dump "lim1" } } */