martong added a comment.

@NoQ

I've found the following reproducer to crash in `CallAndMessageChecker`:

  class a {
  public:
    a(int);
  };
  struct b : a {
    using a::a;
  };
  void c() {
    int d;
    b x(d); //Crash!, Note, x(0) causes no crash
  }

I am working on a fix, but any insight and help from you is really appreciated.


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D74735/new/

https://reviews.llvm.org/D74735



_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to