Improve compatibility with older versions of Windows.
[llvm/msp430.git] / test / FrontendC / 2002-07-30-VarArgsCallFailure.c
blobb37a462220b28e05e263eb1f9d42915db0b8e137
1 // RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null
3 int tcount;
4 void test(char *, const char*, int);
5 void foo() {
6 char Buf[10];
7 test(Buf, "n%%%d", tcount++);