Duncan Sands | eb82470 | 2008-01-11 21:23:39 +0000 | [diff] [blame^] | 1 | ; RUN: llvm-as < %s | llvm-dis | grep byval | count 2 |
2 | |||||
3 | %struct = type { } | ||||
4 | |||||
5 | declare void @foo(...) | ||||
6 | |||||
7 | define void @bar() { | ||||
8 | call void (...)* @foo(%struct* byval null, %struct* byval null ) | ||||
9 | ret void | ||||
10 | } |