llvm-6502/test/Assembler/2005-01-31-CallingAggregateFunction.ll
Devang Patel bb4f8d4045 Let function call return aggregate.
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
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()