aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/CBackend/2003-05-13-VarArgFunction.ll
blob: 1b2c2b846e65d9c54eed87020681e537bec316b9 (plain)
1
2
3
4
5
6
7
8
; This testcase breaks the C backend, because gcc doesn't like (...) functions
; with no arguments at all.

void %test(long %Ptr) {
	%P = cast long %Ptr to void(...) *
	call void(...)* %P(long %Ptr)
	ret void
}