blob: 5d93947a727349a736efadad3a46da56cd89a98f [file] [log] [blame]
Dan Gohmanfea1dd02009-08-25 15:38:29 +00001// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null
Tanya Lattnere9af5d12004-11-06 22:41:00 +00002
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}