[clang] [clang][analyzer] Save path- and syntax-analysis times per entry point (PR #162089)
Arseniy Zaostrovnykh via cfe-commits
cfe-commits at lists.llvm.org
Fri Oct 10 02:59:20 PDT 2025
================
@@ -33,7 +33,15 @@ struct Registry {
struct Snapshot {
const Decl *EntryPoint;
- std::vector<bool> BoolStatValues;
+ // Boolean statistics are always set explicitly. If they are not set, their
+ // value is absent resulting in empty CSV cells
+ std::vector<std::optional<bool>> BoolStatValues;
----------------
necto wrote:
Good point. I will break it down into a few PRs. here is the first one: #162817
https://github.com/llvm/llvm-project/pull/162089
More information about the cfe-commits
mailing list