OSDN Git Service

* gcc.c-torture/compile/20080625-1.c: Skip for M32C.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.c-torture / compile / 20030310-1.c
1 static inline void
2 foo (char accept)
3 {
4   char s;
5   while (s == accept) ;
6 }
7
8 static void
9 bar (void)
10 {
11   char ch;
12   foo (ch);
13 }