Now that llvm cannot represent alias cycles, we have to diagnose erros just before trying to close the cycle. This degrades the errors a bit. The real solution is what it was before: if we want to provide good errors for these cases, we have to be able to find a clang level decl given a mangled name and produce the error from Sema. llvm-svn: 209008
27 lines
566 B
C++
27 lines
566 B
C++
// RUN: %clang_cc1 -emit-llvm %s -o - -triple=i386-pc-win32 -fno-rtti -mconstructor-aliases -O1 -disable-llvm-optzns | FileCheck %s
|
|
|
|
namespace test1 {
|
|
template <typename T> class A {
|
|
~A() {}
|
|
};
|
|
template class A<char>;
|
|
// CHECK-DAG: define weak_odr x86_thiscallcc void @"\01??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: @"\01??1B@test2@@UAE@XZ" = alias void (%"struct.test2::B"*), void (%"struct.test2::A"*)* @"\01??1A@test2@@UAE@XZ"
|
|
}
|