mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-28 05:06:07 +00:00
9 lines
160 B
C
9 lines
160 B
C
// RUN: %clang_cc1 -emit-llvm %s -o /dev/null
|
|
|
|
int tcount;
|
|
void test(char *, const char*, int);
|
|
void foo() {
|
|
char Buf[10];
|
|
test(Buf, "n%%%d", tcount++);
|
|
}
|