blob: b37a462220b28e05e263eb1f9d42915db0b8e137 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null
2
3int tcount;
4void test(char *, const char*, int);
5void foo() {
6 char Buf[10];
7 test(Buf, "n%%%d", tcount++);
8}