blob: be7fd308f90e656657161a7e068a72c5085fb847 (
plain)
1
2
3
4
5
6
7
8
9
10
|
;
; RUN: llvm-as < %s | opt -funcresolve -instcombine | llvm-dis | not grep '\.\.\.'
declare int %foo(...)
declare int %foo(int)
void %bar() {
call int(...)* %foo(int 7)
ret void
}
|