aboutsummaryrefslogtreecommitdiffstats
path: root/test/Assembler/2005-01-31-CallingAggregateFunction.ll
blob: c9252147fb38bc37e638e07d0599af7b921f6bbe (plain)
1
2
3
4
5
6
7
8
9
; RUN: ignore llvm-as < %s -o /dev/null -f |& \
; RUN:    grep "LLVM functions cannot return aggregate types"

define void @test() {
	call {} @foo()
	ret void
}

declare {} @foo()