1 ; RUN: llvm-link %p/type-unique-dst-types.ll \
2 ; RUN: %p/Inputs/type-unique-dst-types2.ll \
3 ; RUN: %p/Inputs/type-unique-dst-types3.ll -S -o %t1.ll
4 ; RUN: cat %t1.ll | FileCheck %s
5 ; RUN: cat %t1.ll | FileCheck --check-prefix=RENAMED %s
7 ; This tests the importance of keeping track of which types are part of the
9 ; When the second input is merged in, the context gets an unused A.11. When
10 ; the third module is then merged, we should pretend it doesn't exist.
12 ; CHECK: %A = type { %B }
13 ; CHECK-NEXT: %B = type { i8 }
15 ; CHECK: @g3 = external global %A
16 ; CHECK: @g1 = external global %A
17 ; CHECK: @g2 = external global %A
23 @g3 = external global %A
25 define %A* @use_g3() {