aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/tree-ssa/ldist-14.c
blob: 700599f1ccb83a1f0e795465b5f0d45e61d17402 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/* { dg-do compile } */
/* { dg-options "-O2 -fno-strict-aliasing -ftree-loop-distribution -fdump-tree-ldist-details" } */

struct desc {
  int i;
  void * __restrict__ data;
  int j;
} a, b;

float foo (int n)
{
  int i;
  float * __restrict__ x, * __restrict__ y, tmp = 0.0;
  x = (float * __restrict__)a.data;
  y = (float * __restrict__)b.data;
  for (i = 0; i < n; ++i)
    {
      x[i] = 0.0;
      tmp += y[i];
    }
  return tmp;
}

/* We should apply loop distribution.  */

/* { dg-final { scan-tree-dump "Loop 1 distributed: split to 2 loops" "ldist" } } */
/* { dg-final { cleanup-tree-dump "ldist" } } */