[clang] [llvm] [MC/DC][Coverage] Loosen the limit of NumConds from 6 (PR #82448)
Hana Dusíková via cfe-commits
cfe-commits at lists.llvm.org
Tue Feb 20 22:38:03 PST 2024
================
@@ -723,7 +737,15 @@ struct MCDCCoverageBuilder {
if (I == CondIDs.end())
return -1;
else
- return I->second;
+ return I->second.ID;
+ }
+
+ void ccc(const Expr *CondExpr, mcdc::ConditionIDs IDs) {
----------------
hanickadot wrote:
this should be named differently, based on name I don't understand what it is doing
https://github.com/llvm/llvm-project/pull/82448
More information about the cfe-commits
mailing list