Next round of pattern isel changes, mostly dealing with calls.
[oota-llvm.git] / test / CFrontend / 2002-07-30-VarArgsCallFailure.c
1 // RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null
2
3 int tcount;
4 void test(char *, const char*, int);
5 void foo() {
6         char Buf[10];
7         test(Buf, "n%%%d", tcount++);
8 }