blob: 7e9468713297f021912f5876cd06ad32a65cc17d [file] [log] [blame]
Misha Brukmanedf4bab2003-09-16 15:29:54 +00001; RUN: llvm-as < %s | opt -funcresolve -instcombine | llvm-dis | grep '\.\.\.' | not grep call
Chris Lattnerb9e71862002-05-24 21:27:41 +00002
3declare int %foo(...)
4
5int %foo(int %x, float %y) {
6 ret int %x
7}
8
9int %bar() {
10 %x = call int(...)* %foo(double 12.5, int 48)
11 ret int %x
12}