1 ; RUN: opt -S -O2 < %s | FileCheck %s
3 ; This test checks that -O2 is able to delete constructors that become empty
4 ; only after some optimization passes have run, even if the pass structure
6 ; CHECK-NOT: @_GLOBAL__I_a
8 %class.Foo = type { i32 }
10 @foo = global %class.Foo zeroinitializer, align 4
11 @_ZN3Bar18LINKER_INITIALIZEDE = external constant i32
12 @llvm.global_ctors = appending global [1 x { i32, ptr, ptr }] [{ i32, ptr, ptr } { i32 65535, ptr @_GLOBAL__I_a, ptr null }]
14 define internal void @__cxx_global_var_init() section "__TEXT,__StaticInit,regular,pure_instructions" {
15 %1 = load i32, ptr @_ZN3Bar18LINKER_INITIALIZEDE, align 4
16 call void @_ZN3FooC1E17LinkerInitialized(ptr @foo, i32 %1)
20 ; Function Attrs: ssp uwtable
21 define linkonce_odr void @_ZN3FooC1E17LinkerInitialized(ptr %this, i32) unnamed_addr #0 align 2 {
22 %2 = alloca ptr, align 8
23 %3 = alloca i32, align 4
24 store ptr %this, ptr %2, align 8
25 store i32 %0, ptr %3, align 4
27 %5 = load i32, ptr %3, align 4
28 call void @_ZN3FooC2E17LinkerInitialized(ptr %4, i32 %5)
32 ; Function Attrs: nounwind ssp uwtable
33 define linkonce_odr void @_ZN3FooC2E17LinkerInitialized(ptr %this, i32) unnamed_addr #1 align 2 {
34 %2 = alloca ptr, align 8
35 %3 = alloca i32, align 4
36 store ptr %this, ptr %2, align 8
37 store i32 %0, ptr %3, align 4
42 define internal void @_GLOBAL__I_a() section "__TEXT,__StaticInit,regular,pure_instructions" {
43 call void @__cxx_global_var_init()