]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - test/CodeGen/vfprintf.c
Vendor import of clang RELEASE_360/rc2 tag r227651 (effectively, 3.6.0 RC2):
[FreeBSD/FreeBSD.git] / test / CodeGen / vfprintf.c
1 // RUN: %clang_cc1 -emit-llvm-only %s
2
3 typedef struct _IO_FILE FILE;
4 int vfprintf(FILE*restrict,const char*restrict, __builtin_va_list);
5 void foo(__builtin_va_list ap) {
6   vfprintf(0, " ", ap);
7 }
8