blob: 784305d6d3b6feacb1701642f53fd31c1743de8d [file] [log] [blame]
Eric Christopher3883e662011-07-26 22:17:02 +00001// RUN: %clang_cc1 -emit-llvm %s -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}