Bump version to 19.1.0-rc3
[llvm-project.git] / llvm / test / Linker / Inputs / byref-type-input.ll
blobb744c44ecae8c47d3d19ea1f011cbf1df6cb329c
1 %a = type { i64 }
2 %struct = type { i32, i8 }
4 define void @g(ptr byref(%a)) {
5   ret void
8 declare void @baz(ptr byref(%struct))
10 define void @foo(ptr byref(%struct) %a) {
11   call void @baz(ptr byref(%struct) %a)
12   ret void