aboutsummaryrefslogtreecommitdiffstats
path: root/test/Verifier/2008-01-11-VarargAttrs.ll
blob: af97ce6474492171044affd9e7d598722b2a710f (plain)
1
2
3
4
5
6
7
8
9
10
; RUN: not llvm-as < %s >& /dev/null

	%struct = type {  }

declare void @foo(...)

define void @bar() {
	call void (...) @foo(%struct* sret null )
	ret void
}