http://llvm.org/bugs/show_bug.cgi?id=19471

            Bug ID: 19471
           Summary: MS ABI: wrong layout of vftable, mismatched size
           Product: clang
           Version: unspecified
          Hardware: PC
                OS: Linux
            Status: NEW
          Severity: normal
          Priority: P
         Component: LLVM Codegen
          Assignee: [email protected]
          Reporter: [email protected]
                CC: [email protected]
    Classification: Unclassified

consider:
struct B {
  virtual void BMethod() {}
};
struct C : virtual B {
  virtual void CMethod() {}
};
struct D : C {};
struct E : C, D {};
struct F : D, virtual E {
  virtual void FMethod() {}
};
F a;


.obj: vftable for ??_7F@@6BC@@D@@@ has mismatched size: 1 (msvc) vs 2 (clang)

-- 
You are receiving this mail because:
You are on the CC list for the bug.
_______________________________________________
LLVMbugs mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/llvmbugs

Reply via email to