Author: hctim Date: Tue Nov 7 13:16:37 2017 New Revision: 317616 URL: http://llvm.org/viewvc/llvm-project?rev=317616&view=rev Log: 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 Modified: cfe/trunk/lib/Basic/SanitizerSpecialCaseList.cpp Modified: cfe/trunk/lib/Basic/SanitizerSpecialCaseList.cpp URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Basic/SanitizerSpecialCaseList.cpp?rev=317616&r1=317615&r2=317616&view=diff ============================================================================== --- cfe/trunk/lib/Basic/SanitizerSpecialCaseList.cpp (original) +++ cfe/trunk/lib/Basic/SanitizerSpecialCaseList.cpp Tue Nov 7 13:16:37 2017 @@ -57,7 +57,7 @@ bool SanitizerSpecialCaseList::inSection 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; _______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits