mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-10-30 07:22:55 +01:00
06a7c559be
llvm-svn: 17514
12 lines
196 B
LLVM
12 lines
196 B
LLVM
; 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
|
|
}
|