aboutsummaryrefslogtreecommitdiffstats
path: root/test/Assembler/2008-01-11-VarargAttrs.ll
blob: c46b2a563e72d1157d3d57e89ea2a1d2fcc47b4f (plain)
1
2
3
4
5
6
7
8
9
10
; RUN: llvm-as < %s | llvm-dis | grep byval | count 2

	%struct = type {  }

declare void @foo(...)

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