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

void %test() {
	call {} %foo()
	ret void
}

declare {} %foo()