Always treat DISubprogram reached by DIImportedEntity as needed.
[oota-llvm.git] / test / Linker / link-type-names.ll
1 ; RUN: echo "%X = type { i32 } @G2 = global %X { i32 4 }" > %t.ll
2 ; RUN: llvm-link %s %t.ll -S | FileCheck %s
3 ; PR11464
4
5 %X = type { i32 }
6 @G = global %X { i32 4 }
7
8
9 ; CHECK: @G = global %X { i32 4 }
10 ; CHECK: @G2 = global %X { i32 4 }