summaryrefslogtreecommitdiffstats
path: root/lib/Basic/SanitizerSpecialCaseList.cpp
diff options
context:
space:
mode:
authorMitch Phillips <mitchphillips@outlook.com>2017-11-07 21:16:37 +0000
committerMitch Phillips <mitchphillips@outlook.com>2017-11-07 21:16:37 +0000
commit94ae19d461139d2d6766e207150e760f5eaaefca (patch)
treec5e6974a1626693cd23c6745ebf1bafa778d4d54 /lib/Basic/SanitizerSpecialCaseList.cpp
parent8df1506a8f89c05a622ab6c66640d5c69f59a3b0 (diff)
Update SanitizerSpecialCaseList to use renamed functions in base class.
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 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@317616 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Basic/SanitizerSpecialCaseList.cpp')
-rw-r--r--lib/Basic/SanitizerSpecialCaseList.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Basic/SanitizerSpecialCaseList.cpp b/lib/Basic/SanitizerSpecialCaseList.cpp
index 4dd52ee870..ee8feecbce 100644
--- a/lib/Basic/SanitizerSpecialCaseList.cpp
+++ b/lib/Basic/SanitizerSpecialCaseList.cpp
@@ -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;