bolt/deps/llvm-18.1.8/clang/test/CodeGen/2002-07-30-VarArgsCallFailure.c
2025-02-14 19:21:04 +01:00

8 lines
164 B
C

// 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++);
}