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