aboutsummaryrefslogtreecommitdiffstats
path: root/test/Assembler/2005-01-31-CallingAggregateFunction.ll
blob: a5a917d08abaadd70880b15b5e559de9f6ba3791 (plain)
1
2
3
4
5
6
7
8
9
; RUN: llvm-as %s -o /dev/null
; RUN: verify-uselistorder %s

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

declare {i32 } @foo()