[llvm] [clang] [clang][CoverageMapping] Refactor when setting MC/DC True/False (PR #78202)
NAKAMURA Takumi via cfe-commits
cfe-commits at lists.llvm.org
Wed Jan 17 17:45:15 PST 2024
================
@@ -573,6 +573,11 @@ struct EmptyCoverageMappingBuilder : public CoverageMappingBuilder {
/// creation.
struct MCDCCoverageBuilder {
+ struct DecisionIDPair {
+ MCDCConditionID TrueID = 0;
+ MCDCConditionID FalseID = 0;
+ };
----------------
chapuni wrote:
Initializers are no longer required since all constructions are made explicitly.
https://github.com/llvm/llvm-project/pull/78202
More information about the cfe-commits
mailing list