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

            Bug ID: 19240
           Summary: Assertion failed: VFTableLayouts.count(id) == 0, file
                    ..\tools\clang\lib\AST\VTableBuilder.cpp, line 3288
           Product: clang
           Version: trunk
          Hardware: PC
                OS: Windows NT
            Status: NEW
          Severity: normal
          Priority: P
         Component: C++
          Assignee: [email protected]
          Reporter: [email protected]
                CC: [email protected], [email protected]
    Classification: Unclassified

Repro:
------------------------
  struct A {
    virtual void c();
  };

  struct B : virtual A {
    virtual void c();
  };

  struct C { };

  struct D : virtual A, virtual C, B {};

  D obj;
------------------------

$ clang-cl -c test.cpp
Assertion failed: VFTableLayouts.count(id) == 0, file
..\tools\clang\lib\AST\VTableBuilder.cpp, line 3288

-- 
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