[clang] [NFC][SanitizerSection] Store Section& instead of Entries and FileIdx (PR #162382)

Thurston Dang via cfe-commits cfe-commits at lists.llvm.org
Tue Oct 7 15:34:09 PDT 2025


================
@@ -67,9 +67,9 @@ SanitizerSpecialCaseList::inSectionBlame(SanitizerMask Mask, StringRef Prefix,
   for (const auto &S : llvm::reverse(SanitizerSections)) {
     if (S.Mask & Mask) {
       unsigned LineNum =
-          SpecialCaseList::inSectionBlame(S.Entries, Prefix, Query, Category);
+          SpecialCaseList::inSectionBlame(S.S.Entries, Prefix, Query, Category);
----------------
thurstond wrote:

`S.S.` is unfortunate naming

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


More information about the cfe-commits mailing list