For PR411:
[oota-llvm.git] / test / Transforms / FunctionResolve / basictest.ll
1 ; RUN: llvm-upgrade < %s | llvm-as | opt -funcresolve -instcombine | llvm-dis | grep '\.\.\.' | not grep call
2
3 declare int %foo(...)
4
5 int %foo(int %x, float %y) {
6         ret int %x
7 }
8
9 int %bar() {
10         %x = call int(...)* %foo(double 12.5, int 48)
11         ret int %x
12 }