Files
clang-p2996/clang/test/CodeGenCXX/virt-template-vtable.cpp
Richard Smith 4ff9ff974c When marking virtual functions as used for a class' vtable, mark all functions
which will appear in the vtable as used, not just those ones which were
declared within the class itself. Fixes an issue reported as comment#3 in
PR12763 -- we sometimes assert in codegen if we try to emit a reference to a
function declaration which we've not marked as referenced. This also matches
gcc's observed behavior.

llvm-svn: 159895
2012-07-07 06:59:51 +00:00

33 lines
621 B
C++

// RUN: %clang_cc1 %s -emit-llvm -o - | FileCheck %s
template<class T> class A {
public:
A() {}
virtual void a() {}
};
class B : A<int> {
B();
};
B::B() {}
template class A<long>;
extern template class A<short>;
template class A<short>;
// CHECK: @_ZTV1B = linkonce_odr unnamed_addr constant
// CHECK: @_ZTV1AIlE = weak_odr unnamed_addr constant
// CHECK: @_ZTV1AIsE = weak_odr unnamed_addr constant
// CHECK: @_ZTV1AIiE = linkonce_odr unnamed_addr constant
template<class T> struct C {
virtual void c() {}
};
struct D : C<int> {
virtual void d();
};
void D::d() {}
// CHECK: define {{.*}}@_ZN1CIiE1cEv(