mirror of
https://github.com/intel/llvm.git
synced 2026-01-30 14:07:28 +08:00
type of the builtin when generating the function declaration for a builtin library call. llvm-svn: 90936
9 lines
195 B
C
9 lines
195 B
C
// RUN: clang-cc -emit-llvm-only %s
|
|
|
|
typedef struct _IO_FILE FILE;
|
|
int vfprintf(FILE*restrict,const char*restrict, __builtin_va_list);
|
|
void foo(__builtin_va_list ap) {
|
|
vfprintf(0, " ", ap);
|
|
}
|
|
|