Update SanitizerSpecialCaseList to use renamed functions in base class.
authorMitch Phillips <mitchphillips@outlook.com>
Tue, 7 Nov 2017 21:16:37 +0000 (21:16 +0000)
committerMitch Phillips <mitchphillips@outlook.com>
Tue, 7 Nov 2017 21:16:37 +0000 (21:16 +0000)
Note: This change has a cyclical dependency on D39485. Both these changes must be submitted at the same time to avoid a build breakage.

Reviewers: vlad.tsyrklevich

Subscribers: llvm-commits

Differential Revision: https://reviews.llvm.org/D39486

llvm-svn: 317616

clang/lib/Basic/SanitizerSpecialCaseList.cpp

index 4dd52ee..ee8feec 100644 (file)
@@ -57,7 +57,7 @@ bool SanitizerSpecialCaseList::inSection(SanitizerMask Mask, StringRef Prefix,
                                          StringRef Category) const {
   for (auto &S : SanitizerSections)
     if ((S.Mask & Mask) &&
-        SpecialCaseList::inSection(S.Entries, Prefix, Query, Category))
+        SpecialCaseList::inSectionBlame(S.Entries, Prefix, Query, Category))
       return true;
 
   return false;