[LLVMbugs] [Bug 21961] New: [fuzz] Assertion `(Destructor->isDefaulted() && !Destructor->doesThisDeclarationHaveABody() && !Destructor->isDeleted()) && "DefineImplicitDestructor - call it for implicit default dtor"' failed.
bugzilla-daemon at llvm.org
bugzilla-daemon at llvm.org
Thu Dec 18 05:43:41 PST 2014
http://llvm.org/bugs/show_bug.cgi?id=21961
Bug ID: 21961
Summary: [fuzz] Assertion `(Destructor->isDefaulted() &&
!Destructor->doesThisDeclarationHaveABody() &&
!Destructor->isDeleted()) && "DefineImplicitDestructor
- call it for implicit default dtor"' failed.
Product: clang
Version: trunk
Hardware: PC
OS: Linux
Status: NEW
Severity: normal
Priority: P
Component: -New Bugs
Assignee: unassignedclangbugs at nondot.org
Reporter: sami.liedes at iki.fi
CC: llvmbugs at cs.uiuc.edu
Classification: Unclassified
Fuzzing discovered that the test case below, when given as input to
clang -fno-crash-diagnostics -std=c++11 -xc++ -c -emit-llvm
causes this assertion failure:
clang-3.6: tools/clang/lib/Sema/SemaDeclCXX.cpp:9226: void
clang::Sema::DefineImplicitDestructor(clang::SourceLocation,
clang::CXXDestructorDecl*): Assertion `(Destructor->isDefaulted() &&
!Destructor->doesThisDeclarationHaveABody() && !Destructor->isDeleted()) &&
"DefineImplicitDestructor - call it for implicit default dtor"' failed.
Test case:
--------------------------------------------------
struct A {
~A() = delete;
~A() = default;
};
--------------------------------------------------
--
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/20141218/e491889c/attachment.html>
More information about the llvm-bugs
mailing list