[LLVMbugs] [Bug 19531] New: Analyzer crashes in clang::ento::SimpleConstraintManager::assumeAux()
bugzilla-daemon at llvm.org
bugzilla-daemon at llvm.org
Wed Apr 23 09:50:53 PDT 2014
http://llvm.org/bugs/show_bug.cgi?id=19531
Bug ID: 19531
Summary: Analyzer crashes in
clang::ento::SimpleConstraintManager::assumeAux()
Product: clang
Version: unspecified
Hardware: PC
OS: Linux
Status: NEW
Severity: normal
Priority: P
Component: Static Analyzer
Assignee: kremenek at apple.com
Reporter: alexfh at google.com
CC: llvmbugs at cs.uiuc.edu
Classification: Unclassified
Analyzer crashes on the following code:
struct A {
A() : x(0) {}
bool h() const { return x == 0; }
int x;
};
struct B {
void g(bool (A::*mp_f)() const) { (A().*mp_f)(); }
void f() { g(&A::h); }
};
--
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/20140423/be832fae/attachment.html>
More information about the llvm-bugs
mailing list