rt_gccstream/gcc/testsuite/gcc.c-torture/compile/20010711-2.c

12 lines
129 B
C

typedef unsigned long long value;
void foo (value *v) {}
void test ()
{
value v;
foo (&v);
if (v-- == 1)
foo (&v);
}