llvm-6502/test/Transforms/GlobalOpt/preserve-comdats.ll
Reid Kleckner 8577eaf8e6 GlobalOpt: Preserve comdats of unoptimized initializers
Rather than slurping in and splatting out the whole ctor list, preserve
the existing array entries without trying to understand them.  Only
remove the entries that we know we can optimize away.  This way we don't
need to wire through priority and comdats or anything else we might add.

Fixes a linker issue where the .init_array or .ctors entry would point
to discarded initialization code if the comdat group from the TU with
the faulty global_ctors entry was dropped.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@218337 91177308-0d34-0410-b5e6-96231b3b80d8
2014-09-23 22:33:01 +00:00

38 lines
1.1 KiB
LLVM

; RUN: opt -globalopt -S < %s | FileCheck %s
$comdat_global = comdat any
@comdat_global = weak_odr global i8 0, comdat $comdat_global
@simple_global = internal global i8 0
; CHECK: @comdat_global = weak_odr global i8 0, comdat $comdat_global
; CHECK: @simple_global = internal global i8 42
@llvm.global_ctors = appending global [2 x { i32, void ()*, i8* }] [
{ i32, void ()*, i8* } { i32 65535, void ()* @init_comdat_global, i8* @comdat_global },
{ i32, void ()*, i8* } { i32 65535, void ()* @init_simple_global, i8* null }
]
; CHECK: @llvm.global_ctors = appending global [1 x { i32, void ()*, i8* }]
; CHECK: [{ i32, void ()*, i8* } { i32 65535, void ()* @init_comdat_global, i8* @comdat_global }]
define void @init_comdat_global() {
store i8 42, i8* @comdat_global
ret void
}
; CHECK: define void @init_comdat_global()
define internal void @init_simple_global() comdat $comdat_global {
store i8 42, i8* @simple_global
ret void
}
; CHECK-NOT: @init_simple_global()
define i8* @use_simple() {
ret i8* @simple_global
}
; CHECK: define i8* @use_simple()
define i8* @use_comdat() {
ret i8* @comdat_global
}
; CHECK: define i8* @use_comdat()