OSDN Git Service

* gcc.c-torture/compile/20080625-1.c: Skip for M32C.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.c-torture / compile / 941113-1.c
1 typedef void foo (void);
2
3 f (x)
4 {
5   if (x)
6     {
7       const foo* v;
8       (*v)();
9     }
10   else
11     g (0);
12 }