blob: b37a462220b28e05e263eb1f9d42915db0b8e137 [file] [log] [blame]
Tanya Lattnere9af5d12004-11-06 22:41:00 +00001// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null
2
Chris Lattnerfd5951c2002-07-30 05:57:03 +00003int tcount;
Chris Lattneraff78982002-07-30 22:24:07 +00004void test(char *, const char*, int);
Chris Lattnerfd5951c2002-07-30 05:57:03 +00005void foo() {
Jeff Cohenb02fbfc2005-04-23 21:26:11 +00006 char Buf[10];
7 test(Buf, "n%%%d", tcount++);
Chris Lattnerfd5951c2002-07-30 05:57:03 +00008}