mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 00:12:50 +01:00
41029353f9
llvm-svn: 45885
11 lines
169 B
LLVM
11 lines
169 B
LLVM
; RUN: llvm-as < %s | llvm-dis | grep byval
|
|
|
|
%struct = type { }
|
|
|
|
declare void @foo(...)
|
|
|
|
define void @bar() {
|
|
call void (...)* @foo(%struct* byval null )
|
|
ret void
|
|
}
|