Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / gcc.c-torture / compile / inline-1.c
blob23af7cb2bfc514c36cc6621a0a4d4a324dd479fc
1 typedef __builtin_va_list va_list;
3 extern void foo (va_list);
5 static void
6 build_message_string (const char *msg, ...)
8 va_list ap;
10 __builtin_va_start (ap, msg);
11 foo (ap);
12 __builtin_va_end (ap);
15 void
16 file_name_as_prefix (f)
17 const char *f;
19 build_message_string ("%s: ", f);