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