blob: 8a1723abf0bf05c051a82e928192b95d4f4f35c2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
; XFAIL: *
;
; 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
}
|