summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/tree-ssa/restrict1.C
blob: dc120b1e81798733959e3aae271227ec2d0ce87d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* { dg-do compile } */
/* { dg-options "-O2 -fdump-tree-lim-details" } */

struct Foo
{
  Foo();
  Foo(const Foo&);
  int n;
  int * __restrict__ p;
};
void bar(Foo f, int * __restrict__ q)
{
  for (int 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" } } */