https://llvm.org/bugs/show_bug.cgi?id=28223

            Bug ID: 28223
           Summary: [MS] MSVC does not provide vtable symbols for explicit
                    template instantiations
           Product: clang
           Version: unspecified
          Hardware: PC
                OS: Windows NT
            Status: NEW
          Severity: normal
          Priority: P
         Component: LLVM Codegen
          Assignee: unassignedclangb...@nondot.org
          Reporter: r...@google.com
                CC: llvm-bugs@lists.llvm.org
            Blocks: 12477
    Classification: Unclassified

Consider:
template <typename T> struct Foo {
  virtual void f() {}
};
template struct Foo<int>;

There is no vftable symbol in MSVC's output, only a symbol for Foo<int>::f.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
_______________________________________________
llvm-bugs mailing list
llvm-bugs@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs

Reply via email to