2008-01-11 21:46:24 +00:00
|
|
|
; RUN: llvm-as < %s | llvm-dis | grep byval
|
2008-01-11 21:23:39 +00:00
|
|
|
|
|
|
|
%struct = type { }
|
|
|
|
|
|
|
|
declare void @foo(...)
|
|
|
|
|
|
|
|
define void @bar() {
|
2008-01-11 21:46:24 +00:00
|
|
|
call void (...)* @foo(%struct* byval null )
|
2008-01-11 21:23:39 +00:00
|
|
|
ret void
|
|
|
|
}
|