From: Chris Lattner Date: Tue, 30 Jul 2002 05:57:03 +0000 (+0000) Subject: New testcase distilled from trying to compile burg with LLVM X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=fd5951c16b1b2825b2bc34fa72b4fed5ab7502c9;p=oota-llvm.git 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 --- diff --git a/test/CFrontend/2002-07-30-VarArgsCallFailure.c b/test/CFrontend/2002-07-30-VarArgsCallFailure.c new file mode 100644 index 00000000000..dfe9d63c1b2 --- /dev/null +++ b/test/CFrontend/2002-07-30-VarArgsCallFailure.c @@ -0,0 +1,6 @@ +#include +int tcount; +void foo() { + char Buf[10]; + sprintf(Buf, "n%%%d", tcount++); +}