llvm-6502/test/Transforms/FunctionResolve/2003-05-31-InternalDecl.ll
2003-06-28 23:23:34 +00:00

13 lines
187 B
LLVM

; RUN: as < %s | opt -funcresolve | dis | not grep declare
declare void %test(...)
int %callee() {
call void(...)* %test(int 5)
ret int 2
}
internal void %test(int) {
ret void
}