OSDN Git Service

Backported from mainline
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.c-torture / compile / 20040909-1.c
1 static __inline__ int
2 one_utf8_to_utf16 () { }
3
4 static __inline__ unsigned char
5 conversion_loop (int (*const one_conversion)())
6 {
7 return one_conversion ();
8 }
9 static unsigned char
10 convert_utf8_utf16 ()
11 {
12   return conversion_loop (one_utf8_to_utf16);
13 }