blob: c0aedc80b4c3577f47fc85e2c3481a7974038201 [file] [log] [blame]
; RUN: llvm-as < %s | llvm-dis | grep byval
%struct = type { }
declare void @foo(...)
define void @bar() {
call void (...)* @foo(%struct* byval null )
ret void
}