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

int
nr (void)
{
}

void
it (int dl)
{
  int vp = 0;

  for (;;)
    {
      dl = vp ^ nr ();
      dl ^= vp;
      vp = 1;
    }
}