aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/pr97141.c
blob: 1a9ff830a2204516fab5850efe940bf53892420d (plain)
1
2
3
4
5
6
7
8
int a;
short b, c;
short d(short e, short f) { return e + f; }
void g(void) {
  a = -9;
  for (; a != 51; a = d(a, 5))
    b |= c;
}