1%a = type { i64 }
2%struct = type { i32, i8 }
3
4define void @g(%a* byref(%a)) {
5 ret void
6}
7
8declare void @baz(%struct* byref(%struct))
9
10define void @foo(%struct* byref(%struct) %a) {
11 call void @baz(%struct* byref(%struct) %a)
12 ret void
13}
14