bolt/deps/llvm-18.1.8/clang/test/CodeGen/2002-07-30-VarArgsCallFailure.c

9 lines
164 B
C
Raw Normal View History

2025-02-14 19:21:04 +01:00
// RUN: %clang_cc1 -emit-llvm %s -o /dev/null
int tcount;
void test(char *, const char*, int);
void foo(void) {
char Buf[10];
test(Buf, "n%%%d", tcount++);
}