blob: 9c27d84992a88a541d43ac67900f78dd5d49b3a2 [file] [log] [blame]
; RUN: llvm-as < %s | opt -funcresolve | llvm-dis | grep declare
declare void %test(...)
int %callee() {
call void(...)* %test(int 5)
ret int 2
}
internal void %test(int) {
ret void
}