aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/compile/pr35431.c
blob: ffe9d068a153d7c7039b13cd57deee5f6cef6f7d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
void bar();

void foo(int i)
{
  __complex__ int k = 0;

  if (i)
    k = 1;

  for (i = 0; i < 1; ++i)
    ;

  if (k)
    bar();
}