[LLVMbugs] [Bug 19240] New: Assertion failed: VFTableLayouts.count(id) == 0, file ..\tools\clang\lib\AST\VTableBuilder.cpp, line 3288
bugzilla-daemon at llvm.org
bugzilla-daemon at llvm.org
Tue Mar 25 04:24:24 PDT 2014
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: unassignedclangbugs at nondot.org
Reporter: timurrrr at google.com
CC: dgregor at apple.com, llvmbugs at cs.uiuc.edu
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.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-bugs/attachments/20140325/bf8b3dd7/attachment.html>
More information about the llvm-bugs
mailing list