1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-25 04:02:41 +01:00
llvm-mirror/test/Assembler/2005-01-31-CallingAggregateFunction.ll
Devang Patel 702c4a60a6 Let function call return aggregate.
Now, we have very first multiple return value testcase!

llvm-svn: 47424
2008-02-21 01:54:02 +00:00

9 lines
107 B
LLVM

; RUN: llvm-as < %s -o /dev/null -f
define void @test() {
call {} @foo()
ret void
}
declare {} @foo()