xref: /llvm-project/llvm/test/Assembler/2008-01-11-VarargAttrs.ll (revision 75a479221b72c8b4827470485949cebf67d1c967)
1; RUN: llvm-as < %s | llvm-dis | grep byval
2; RUN: verify-uselistorder %s
3
4	%struct = type {  }
5
6declare void @foo(...)
7
8define void @bar() {
9	call void (...) @foo(ptr byval(%struct) null )
10	ret void
11}
12