mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-27 01:56:05 +00:00

This adds -no-opaque-pointers to clang tests whose output will change when opaque pointers are enabled by default. This is intended to be part of the migration approach described in https://discourse.llvm.org/t/enabling-opaque-pointers-by-default/61322/9. The patch has been produced by replacing %clang_cc1 with %clang_cc1 -no-opaque-pointers for tests that fail with opaque pointers enabled. Worth noting that this doesn't cover all tests, there's a remaining ~40 tests not using %clang_cc1 that will need a followup change. Differential Revision: https://reviews.llvm.org/D123115
43 lines
1.0 KiB
C++
43 lines
1.0 KiB
C++
// RUN: %clang_cc1 -no-opaque-pointers -emit-llvm %s -o - -triple=i386-pc-win32 -fno-rtti -mconstructor-aliases -O1 -disable-llvm-passes | FileCheck %s
|
|
|
|
namespace test1 {
|
|
template <typename T> class A {
|
|
~A() {}
|
|
};
|
|
template class A<char>;
|
|
// CHECK-DAG: define weak_odr dso_local x86_thiscallcc void @"??1?$A@D@test1@@AAE@XZ"
|
|
}
|
|
|
|
namespace test2 {
|
|
struct A {
|
|
virtual ~A();
|
|
};
|
|
struct B : A {
|
|
B();
|
|
virtual ~B();
|
|
};
|
|
|
|
A::~A() {}
|
|
B::~B() {}
|
|
void foo() {
|
|
B b;
|
|
}
|
|
// CHECK-DAG: @"??1B@test2@@UAE@XZ" = dso_local unnamed_addr alias void (%"struct.test2::B"*), bitcast (void (%"struct.test2::A"*)* @"??1A@test2@@UAE@XZ" to void (%"struct.test2::B"*)*)
|
|
}
|
|
|
|
namespace test3 {
|
|
struct A { virtual ~A(); };
|
|
A::~A() {}
|
|
}
|
|
// CHECK-DAG: define dso_local x86_thiscallcc void @"??1A@test3@@UAE@XZ"(
|
|
namespace test3 {
|
|
template <typename T>
|
|
struct B : A {
|
|
virtual ~B() { }
|
|
};
|
|
template struct B<int>;
|
|
}
|
|
// This has to be weak, and emitting weak aliases is fragile, so we don't do the
|
|
// aliasing.
|
|
// CHECK-DAG: define weak_odr dso_local x86_thiscallcc void @"??1?$B@H@test3@@UAE@XZ"(
|