mirror of https://github.com/microsoft/clang.git
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
This commit is contained in:
parent
8df1506a8f
commit
94ae19d461
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue