aboutsummaryrefslogtreecommitdiffstats
path: root/test/Transforms/FunctionResolve/2002-11-09-ExternFn.ll
blob: 69092194a82ee6465324efbe58ad8c89f81f7e45 (plain)
1
2
3
4
5
6
7
8
9
10
;
; 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
}