1
0
mirror of https://github.com/c64scene-ar/llvm-6502.git synced 2025-03-02 22:32:08 +00:00
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
}