Additionally, this patch puts an assertion checking for feasible
constraints in every place where constraints are assigned to states.
Details
Details
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
Comment Actions
Aha ok, seems reasonable, thx!
clang/test/Analysis/PR49642.c | ||
---|---|---|
2 | Why not the usual %clang_analyze_cc1? Your approach only adds driver testing which doesn't seem to test anything new. Also if you do clang --analyze you don't need to enable core explicitly, you already have all on-by-default checks running. |
clang/test/Analysis/PR49642.c | ||
---|---|---|
2 | I didn't figure out how to reproduce the crash with %clang_analyze_cc1 :-( |
clang/test/Analysis/PR49642.c | ||
---|---|---|
2 | Mmm ok weird. Let's start by using -### to convert the driver invocation into a -cc1 invocation and then bisecting flags until we obtain a minimal -cc1 invocation. |
Why not the usual %clang_analyze_cc1? Your approach only adds driver testing which doesn't seem to test anything new. Also if you do clang --analyze you don't need to enable core explicitly, you already have all on-by-default checks running.