[ORC] Add std::tuple support to SimplePackedSerialization.
[llvm-project.git] / llvm / test / Linker / Inputs / byref-type-input.ll
blob1ca8a897327b588a0e67eb6b1fe14f7a3cd4fc79
1 %a = type { i64 }
2 %struct = type { i32, i8 }
4 define void @g(%a* byref(%a)) {
5   ret void
8 declare void @baz(%struct* byref(%struct))
10 define void @foo(%struct* byref(%struct) %a) {
11   call void @baz(%struct* byref(%struct) %a)
12   ret void