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