aboutsummaryrefslogtreecommitdiffstats
path: root/test/Assembler/2005-01-31-CallingAggregateFunction.ll
blob: 366bd7326d310739ebf840f95f37d084919fce7f (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()