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

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