This makes the C++ ABI depend entirely on the target: MS ABI for -win32 triples, Itanium otherwise. It's no longer possible to do weird combinations. To be able to run a test with a specific ABI without constraining it to a specific triple, new substitutions are added to lit: %itanium_abi_triple and %ms_abi_triple can be used to get the current target triple adjusted to the desired ABI. For example, if the test suite is running with the i686-pc-win32 target, %itanium_abi_triple will expand to i686-pc-mingw32. Differential Revision: http://llvm-reviews.chandlerc.com/D2545 llvm-svn: 199250
82 lines
1.4 KiB
C++
82 lines
1.4 KiB
C++
// RUN: %clang_cc1 %s -emit-llvm -triple %itanium_abi_triple -o - | FileCheck %s
|
|
|
|
// CHECK: @_ZTVZZ1HvEN1S1IEvE1S =
|
|
|
|
// CHECK: define {{.*}} @_Z2L1v(
|
|
// CHECK: define {{.*}} @_ZZ2L1vEN1S2L2Ev(
|
|
// CHECK: define {{.*}} @_ZZ2L1vEN1S2L2E_0v(
|
|
// CHECK: define {{.*}} @_ZZ1FvEN1S1T1S1T1GEv(
|
|
// CHECK: define {{.*}} @_ZZZ2L1vEN1S2L2E_0vEN1S3L3cEv(
|
|
// CHECK: define {{.*}} @_ZZZ2L1vEN1S2L2E_0vEN1S3L3dE_0v(
|
|
// CHECK: define {{.*}} @_ZZZ2L1vEN1S2L2EvEN1S3L3aEv(
|
|
// CHECK: define {{.*}} @_ZZZ2L1vEN1S2L2EvEN1S3L3bE_0v(
|
|
|
|
void L1() {
|
|
{
|
|
struct S {
|
|
void L2() {
|
|
{
|
|
struct S {
|
|
void L3a() {}
|
|
};
|
|
S().L3a();
|
|
}
|
|
{
|
|
struct S {
|
|
void L3b() {}
|
|
};
|
|
S().L3b();
|
|
}
|
|
}
|
|
};
|
|
S().L2();
|
|
}
|
|
{
|
|
struct S {
|
|
void L2() {
|
|
{
|
|
struct S {
|
|
void L3c() {}
|
|
};
|
|
S().L3c();
|
|
}
|
|
{
|
|
struct S {
|
|
void L3d() {}
|
|
};
|
|
S().L3d();
|
|
}
|
|
}
|
|
};
|
|
S().L2();
|
|
}
|
|
}
|
|
|
|
void F() {
|
|
struct S {
|
|
struct T {
|
|
struct S {
|
|
struct T {
|
|
void G() {}
|
|
};
|
|
};
|
|
};
|
|
};
|
|
S::T::S::T().G();
|
|
}
|
|
|
|
struct B { virtual void Foo() = 0; };
|
|
void G(const B &);
|
|
|
|
void H() {
|
|
struct S {
|
|
void I() {
|
|
struct S : B {
|
|
virtual void Foo() {}
|
|
};
|
|
G(S());
|
|
}
|
|
};
|
|
S().I();
|
|
}
|