llvm-6502/test/Transforms/FunctionResolve/2003-05-21-MissingArguments.ll
2003-09-16 15:29:54 +00:00

12 lines
171 B
LLVM

; RUN: llvm-as < %s | opt -funcresolve -disable-output
void %foo(int, int) {
ret void
}
declare void %foo(...)
void %test() {
call void(...)* %foo(int 7)
ret void
}