llvm-6502/test/CodeGen/CBackend/2003-05-13-VarArgFunction.ll
2006-12-02 04:23:10 +00:00

11 lines
262 B
LLVM

; RUN: llvm-upgrade < %s | llvm-as | llc -march=c
; 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
}