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: [email protected]
          Reporter: [email protected]
                CC: [email protected]
    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.
_______________________________________________
LLVMbugs mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/llvmbugs

Reply via email to