2014-12-04 05:00:21 +08:00
|
|
|
// RUN: %clang_cc1 -triple %itanium_abi_triple -emit-llvm -o - %s | FileCheck %s
|
2015-09-15 08:37:06 +08:00
|
|
|
// RUN: %clang_cc1 -triple %itanium_abi_triple -emit-llvm -o - %s -O2 | opt - -S -globalopt -o - | FileCheck %s --check-prefix=O1
|
2014-12-04 05:00:21 +08:00
|
|
|
// RUN: %clang_cc1 -triple %ms_abi_triple -emit-llvm -o - %s | FileCheck %s
|
2015-09-15 08:37:06 +08:00
|
|
|
// RUN: %clang_cc1 -triple %ms_abi_triple -emit-llvm -o - %s -O2 | opt - -S -globalopt -o - | FileCheck %s --check-prefix=O1
|
2014-12-04 05:00:21 +08:00
|
|
|
|
|
|
|
// Check that GlobalOpt can eliminate static constructors for simple implicit
|
2015-08-24 02:53:59 +08:00
|
|
|
// constructors. This is a targeted integration test to make sure that LLVM's
|
2014-12-04 05:00:21 +08:00
|
|
|
// optimizers are able to process Clang's IR. GlobalOpt in particular is
|
|
|
|
// sensitive to the casts we emit.
|
|
|
|
|
|
|
|
// CHECK: @llvm.global_ctors = appending global [1 x { i32, void ()*, i8* }]
|
|
|
|
// CHECK: [{ i32, void ()*, i8* } { i32 65535, void ()* @_GLOBAL__sub_I_ctor_globalopt.cpp, i8* null }]
|
|
|
|
|
2015-06-30 01:29:50 +08:00
|
|
|
// CHECK-LABEL: define internal {{.*}}void @_GLOBAL__sub_I_ctor_globalopt.cpp()
|
|
|
|
// CHECK: call {{.*}}void @
|
2015-06-10 03:04:36 +08:00
|
|
|
// CHECK-NOT: call{{ }}
|
2014-12-04 05:00:21 +08:00
|
|
|
|
|
|
|
// O1: @llvm.global_ctors = appending global [0 x { i32, void ()*, i8* }] zeroinitializer
|
|
|
|
|
|
|
|
struct A {
|
|
|
|
virtual void f();
|
|
|
|
int a;
|
|
|
|
};
|
|
|
|
struct B : virtual A {
|
|
|
|
virtual void g();
|
|
|
|
int b;
|
|
|
|
};
|
|
|
|
B b;
|