blob: 5d93947a727349a736efadad3a46da56cd89a98f [file] [log] [blame]
// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null
int tcount;
void test(char *, const char*, int);
void foo() {
char Buf[10];
test(Buf, "n%%%d", tcount++);
}