diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2024-02-15 18:24:57 +0900 |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2024-02-15 20:27:47 +0900 |
commit | 75f0d40507ea3f7c99dd3250ff0fbe6dab341910 (patch) | |
tree | 488604ddd040e1e289066e78bf4c6de21b3d907c /clang/lib/CodeGen/CoverageMappingGen.cpp | |
parent | 3fe5a0cfa5391db18fcc226f3f783642d3f44503 (diff) | |
download | llvm-75f0d40507ea3f7c99dd3250ff0fbe6dab341910.zip llvm-75f0d40507ea3f7c99dd3250ff0fbe6dab341910.tar.gz llvm-75f0d40507ea3f7c99dd3250ff0fbe6dab341910.tar.bz2 |
CoverageMapping: Move `getParams<InnerParamTy>(MCDCParams)` into `mcdc::`
Fixup for #81227
Diffstat (limited to 'clang/lib/CodeGen/CoverageMappingGen.cpp')
-rw-r--r-- | clang/lib/CodeGen/CoverageMappingGen.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/clang/lib/CodeGen/CoverageMappingGen.cpp b/clang/lib/CodeGen/CoverageMappingGen.cpp index eb3beec..c10d85e 100644 --- a/clang/lib/CodeGen/CoverageMappingGen.cpp +++ b/clang/lib/CodeGen/CoverageMappingGen.cpp @@ -190,8 +190,7 @@ public: } const auto &getMCDCDecisionParams() const { - return CounterMappingRegion::getParams<const mcdc::DecisionParameters>( - MCDCParams); + return mcdc::getParams<const mcdc::DecisionParameters>(MCDCParams); } const mcdc::Parameters &getMCDCParams() const { return MCDCParams; } |