This function only makes sense there. Eventually it should no longer be part of the CGCXXABI interface, as it is an Itanium-specific detail. Differential Revision: http://llvm-reviews.chandlerc.com/D821 llvm-svn: 185213
12 lines
182 B
C++
12 lines
182 B
C++
// RUN: %clang_cc1 %s -fno-rtti -cxx-abi microsoft -triple=i386-pc-win32 -emit-llvm -o %t
|
|
|
|
struct A {};
|
|
struct B : virtual A {
|
|
virtual ~B();
|
|
};
|
|
struct C : B {
|
|
C();
|
|
};
|
|
|
|
C::C() {}
|