llvm-6502/test/Assembler/2005-01-31-CallingAggregateFunction.ll
2007-04-16 15:00:39 +00:00

10 lines
180 B
LLVM

; 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()