Files
llvm-project/llvm/test/Regression/CodeGen/CBackend/2003-05-13-VarArgFunction.ll
Tanya Lattner f14e76db43 Adding RUN lines.
llvm-svn: 17527
2004-11-06 21:40:51 +00:00

11 lines
247 B
LLVM

; RUN: llvm-as < %s | 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
}