mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 00:12:50 +01:00
bbce41f698
since functions may contain aggregate constants too. llvm-svn: 73220
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
|
|
}
|