rt_gccstream/gcc/testsuite/gcc.c-torture/compile/pr35431.c

16 lines
133 B
C

void bar();
void foo(int i)
{
__complex__ int k = 0;
if (i)
k = 1;
for (i = 0; i < 1; ++i)
;
if (k)
bar();
}