mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 16:33:37 +01:00
13 lines
288 B
LLVM
13 lines
288 B
LLVM
|
; RUN: llvm-as < %s | llvm-dis -disable-output
|
||
|
; PR4373
|
||
|
|
||
|
@foo = weak global { i32 } zeroinitializer
|
||
|
@bar = weak global i32 0
|
||
|
|
||
|
define void @test() {
|
||
|
entry:
|
||
|
store { i32 } zeroinitializer, { i32 }* @foo
|
||
|
store i32 1, i32* @bar
|
||
|
ret void
|
||
|
}
|