aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/20160615-1.c
blob: 1865a77ed38c389ed49a3a59622f7e10c57bde9c (plain)
1
2
3
4
5
6
7
8
9
10
int a;
void bar (int, unsigned, unsigned);

void
foo (unsigned x)
{
  unsigned b = a ? x : 0;
  if (x || b)
    bar (0, x, b);
}