mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-10-30 15:32:52 +01:00
7c86880898
llvm-svn: 10122
11 lines
159 B
LLVM
11 lines
159 B
LLVM
; RUN: llvm-as < %s | opt -funcresolve -disable-output 2>&1 | not grep WARNING
|
|
|
|
|
|
void %test() {
|
|
call int(...)* %test()
|
|
ret void
|
|
}
|
|
|
|
declare int %test(...)
|
|
|