summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/pr87259.c
blob: 527a60a37adb520591ff40a52a12706aa1582068 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* { dg-do compile } */
/* { dg-options "-Ofast" } */

int a, b, c;
int *e;
float f;
void h() {
  for (int g;;) {
    float d = b, i = 0 / f, j = a / (f * f), k, l = 0 / d;
    c = i + j;
    g = l;
    e[g] = c / d * k / d;
  }
}