llvm-6502/test/Transforms/FunctionResolve/2002-11-09-ExternFn.ll
2003-06-28 23:23:34 +00:00

11 lines
175 B
LLVM

;
; RUN: as < %s | opt -funcresolve -instcombine | dis | not grep '\.\.\.'
declare int %foo(...)
declare int %foo(int)
void %bar() {
call int(...)* %foo(int 7)
ret void
}