]> granicus.if.org Git - clang/commitdiff
Do not give implicitly-defined virtual members functions
authorDouglas Gregor <dgregor@apple.com>
Thu, 6 May 2010 23:13:35 +0000 (23:13 +0000)
committerDouglas Gregor <dgregor@apple.com>
Thu, 6 May 2010 23:13:35 +0000 (23:13 +0000)
available_externally linkage, since they may not have been given a
strong definition in another translation unit. Without this patch, the
following test case fails to link with a GCC-compiled libstdc++:

  #include <sstream>
  int main() { std::basic_stringbuf<char> bs; }

Fixes the last problem with the Boost.IO library.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@103208 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/CodeGenModule.cpp
test/CodeGenCXX/template-linkage.cpp

index 9c84bcec0541098b79c938a503c09894e4a4235b..6cbc3f67c2d550c6f730000d697a83a607fe7076 100644 (file)
@@ -322,8 +322,8 @@ GetLinkageForFunction(ASTContext &Context, const FunctionDecl *FD,
   // only for inlining and analysis. This is the semantics of c99 inline.
   if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD)) {
     const CXXRecordDecl *RD = MD->getParent();
-    if (MD->isVirtual() &&
-       CodeGenVTables::isKeyFunctionInAnotherTU(Context, RD))
+    if (MD->isVirtual() && !MD->isImplicit() &&
+        CodeGenVTables::isKeyFunctionInAnotherTU(Context, RD))
       return CodeGenModule::GVA_C99Inline;
   }  
 
index ccd61a7bbe309fa1dd2838d963909be87e343881..63a5c09cd7d8d5b794652acb2c81408a2a22fa0d 100644 (file)
@@ -22,3 +22,23 @@ template void f<int>(int);
 template <typename T> inline void g(T) { }
 template void g<int>(int);
 
+template<typename T>
+struct X0 {
+  virtual ~X0() { }
+};
+
+template<typename T>
+struct X1 : X0<T> {
+  virtual void blarg();
+};
+
+template<typename T> void X1<T>::blarg() { }
+
+extern template struct X0<char>;
+extern template struct X1<char>;
+
+// CHECK: define linkonce_odr void @_ZN2X1IcED1Ev(
+void test_X1() {
+  X1<char> i1c;
+}
+