blob: 48b5d4690c0f5c5cf61c9b759c9e2cf5e39705f0 [file] [log] [blame]
Misha Brukmane78760e2003-09-16 15:29:54 +00001; RUN: llvm-as < %s | opt -funcresolve -disable-output
Chris Lattner62a4b832003-05-21 20:44:16 +00002
3void %foo(int, int) {
4 ret void
5}
6declare void %foo(...)
7
8void %test() {
9 call void(...)* %foo(int 7)
10 ret void
11}