aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/tree-ssa/ldist-34.c
blob: 3e37b304932ec24d9226b1c0c3c799f15c45dde9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* { dg-do compile { target size32plus } } */
/* { dg-options "-O2 -ftree-loop-distribution" } */

#define X (3.0)
int b, c;
double a[30000];
int foo () {
  for (int i = 0; i < 100; ++i) {
    for (int j = 0; j < c; ++j)
      if (b)
        a[0] = b;
    a[i * 100] = a[1] = X;
  }
  return 0;
}