[PATCH] D74735: [analyzer] Add support for CXXInheritedCtorInitExpr.
Gabor Marton via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Tue Mar 3 10:21:13 PST 2020
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
More information about the cfe-commits
mailing list