12 lines
171 B
LLVM
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
|
|
}
|