Eli Friedman | 386ca78 | 2009-12-09 03:05:59 +0000 | [diff] [blame] | 1 | // RUN: clang-cc -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 |