hanchenye-llvm-project/llvm/test/Regression/CodeGen/CBackend/2003-05-13-VarArgFunction.ll

9 lines
211 B
LLVM

; 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
}