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

	%struct = type {  }

declare void @foo(...)

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