llvm-6502/test/Transforms/FunctionResolve/2003-05-21-MissingArguments.ll
2003-05-21 20:44:16 +00:00

12 lines
166 B
LLVM

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