brintos

brintos / llvm-project-archived public Read only

0
0
Text · 197 B · 7c583b5 Raw
9 lines · c
1// RUN: %clang_cc1 -emit-llvm-only %s2 3typedef struct _IO_FILE FILE;4int vfprintf(FILE*restrict,const char*restrict, __builtin_va_list);5void foo(__builtin_va_list ap) {6  vfprintf(0, " ", ap);7}8 9