mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-13 14:47:00 +00:00
bb4f8d4045
Now, we have very first multiple return value testcase! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@47424 91177308-0d34-0410-b5e6-96231b3b80d8
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()
|