Bump version to 19.1.0-rc3
[llvm-project.git] / llvm / test / Linker / type-unique-opaque.ll
blob72466f2e134a2b15a7633f5f5653ea8ed9dcb292
1 ; RUN: llvm-link -S %s %p/Inputs/type-unique-opaque.ll | FileCheck %s
3 ; Test that a failed attempt at merging %u2 and %t2 (for the other file) will
4 ; not cause %u and %t to get merged.
6 ; CHECK: %u = type opaque
7 ; CHECK: define %u @g(%u %a) {
9 %u = type opaque
10 %u2 = type { %u, i8 }
12 declare %u2 @f()
14 define %u @g(%u %a) {
15   ret %u %a