mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-15 04:30:12 +00:00
11 lines
235 B
LLVM
11 lines
235 B
LLVM
|
; 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 }
|