OSDN Git Service

PR middle-end/51761
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.c-torture / compile / 20010711-1.c
1 typedef unsigned long long value;
2
3 void foo (value *v) {}
4
5 void test ()
6 {
7   value v;
8   foo (&v);
9   if (v-- > 0)
10     foo (&v);
11 }