[opaque pointer type] Add textual IR support for explicit type parameter to the call...
[oota-llvm.git] / test / Assembler / 2008-01-11-VarargAttrs.ll
1 ; RUN: llvm-as < %s | llvm-dis | grep byval
2 ; RUN: verify-uselistorder %s
3
4         %struct = type {  }
5
6 declare void @foo(...)
7
8 define void @bar() {
9         call void (...) @foo(%struct* byval null )
10         ret void
11 }