mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 16:33:37 +01:00
0c09a4b97f
Fixes PR8389. llvm-svn: 116812
17 lines
370 B
LLVM
17 lines
370 B
LLVM
; RUN: opt < %s -globalopt -S | FileCheck %s
|
|
|
|
; PR8389: Globals with weak_odr linkage type must not be modified
|
|
|
|
; CHECK: weak_odr global i32 0
|
|
|
|
@SomeVar = weak_odr global i32 0
|
|
|
|
@llvm.global_ctors = appending global [1 x { i32, void ()* }] [ { i32, void ()* } { i32 65535, void ()* @CTOR } ]
|
|
|
|
define internal void @CTOR() {
|
|
store i32 23, i32* @SomeVar
|
|
ret void
|
|
}
|
|
|
|
|