summaryrefslogtreecommitdiff
path: root/test/FrontendC/2002-07-30-VarArgsCallFailure.c
blob: 5d93947a727349a736efadad3a46da56cd89a98f (plain)
1
2
3
4
5
6
7
8
// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null

int tcount;
void test(char *, const char*, int);
void foo() {
  char Buf[10];
  test(Buf, "n%%%d", tcount++);
}