blob: b54c9db43dd53d8ba522fcf350f49a96fe2a1542 (
plain)
1
2
3
4
5
6
7
8
9
|
; RUN: echo "%X = type { i32 } @G2 = global %X { i32 4 }" > %t.ll
; RUN: llvm-link %s %t.ll -S | FileCheck %s
%X = type { i32 }
@G = global %X { i32 4 }
; CHECK: @G = global %X { i32 4 }
; CHECK: @G2 = global %X { i32 4 }
|