reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
1 2 3 4 5 6 7 8 9 10 | ; RUN: echo "%X = type { i32 } @G2 = global %X { i32 4 }" > %t.ll ; RUN: llvm-link %s %t.ll -S | FileCheck %s ; PR11464 %X = type { i32 } @G = global %X { i32 4 } ; CHECK: @G = global %X { i32 4 } ; CHECK: @G2 = global %X { i32 4 } |