aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/torture/pr108574-3.c
blob: b5c85d1261a595e4edc28070cf8131fd0ee5d645 (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 run } */

__INT32_TYPE__ a = 3557301289, d;
signed char b, f;
unsigned short c = 241;
short e, g;
static void h() {
  if (!a)
    goto i;
  b = a;
  for (; a < 2; a = b) {
    unsigned short j;
    if (c || !g) {
      j = c;
    i:
      e = j;
    }
    f = j;
    d = ~(f & ~2880764155);
    while (d > -2316069)
      ;
  }
}
int main() {
  h();
  return 0;
}