mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 04:02:41 +01: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()
|