New testcase distilled from trying to compile burg with LLVM

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3148 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2002-07-30 05:57:03 +00:00
parent 2e1749bbf8
commit fd5951c16b

View File

@ -0,0 +1,6 @@
#include <stdio.h>
int tcount;
void foo() {
char Buf[10];
sprintf(Buf, "n%%%d", tcount++);
}