aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/torture/pr111128.c
blob: aa623b0d0452cc99811b126ffc95b9b85521b47b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* { dg-do compile } */

int a, b, c, e, g;
short *d;
unsigned char f;
int h() {
  f &= g;
  for (; b; b++) {
    a = 2;
    for (; a; a--)
      c = 0;
    if (c)
      continue;
    e = (unsigned short)*d >> f;
  }
}