mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-02 00:51:56 +00:00
702c4a60a6
Now, we have very first multiple return value testcase! llvm-svn: 47424
9 lines
107 B
LLVM
9 lines
107 B
LLVM
; RUN: llvm-as < %s -o /dev/null -f
|
|
|
|
define void @test() {
|
|
call {} @foo()
|
|
ret void
|
|
}
|
|
|
|
declare {} @foo()
|