[PATCH] D39486: Update SanitizerSpecialCaseList to use renamed functions in base class.
Mitch Phillips via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue Oct 31 17:39:33 PDT 2017
hctim created this revision.
Note: This change has a cyclical dependency on https://reviews.llvm.org/D39485. Both these changes must be submitted at the same time to avoid a build breakage.
https://reviews.llvm.org/D39486
Files:
lib/Basic/SanitizerSpecialCaseList.cpp
Index: lib/Basic/SanitizerSpecialCaseList.cpp
===================================================================
--- lib/Basic/SanitizerSpecialCaseList.cpp
+++ lib/Basic/SanitizerSpecialCaseList.cpp
@@ -57,7 +57,7 @@
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;
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D39486.121094.patch
Type: text/x-patch
Size: 543 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20171101/e7b70b13/attachment.bin>
More information about the llvm-commits
mailing list