[clang] [llvm] [MC/DC][Coverage] Loosen the limit of NumConds from 6 (PR #82448)

NAKAMURA Takumi via llvm-commits llvm-commits at lists.llvm.org
Tue Feb 20 22:51:23 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) {
----------------
chapuni wrote:

This is w-i-p. Thanks for pointing this out.

https://github.com/llvm/llvm-project/pull/82448


More information about the llvm-commits mailing list