From c0669ce984b2006a59f1f024e32f4c21b81dd084 Mon Sep 17 00:00:00 2001 From: Etienne Bergeron Date: Thu, 15 Sep 2016 15:19:19 +0000 Subject: address comments from: https://reviews.llvm.org/D24566 using startswith instead of find. llvm-svn: 281617 --- llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp') diff --git a/llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp b/llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp index df180df7dea..f2c0cc2a998 100644 --- a/llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp +++ b/llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp @@ -1883,7 +1883,7 @@ bool AddressSanitizer::runOnFunction(Function &F) { if (&F == AsanCtorFunction) return false; if (F.getLinkage() == GlobalValue::AvailableExternallyLinkage) return false; if (!ClDebugFunc.empty() && ClDebugFunc == F.getName()) return false; - if (F.getName().find("__asan_") != std::string::npos) return false; + if (F.getName().startswith("__asan_") != std::string::npos) return false; // If needed, insert __asan_init before checking for SanitizeAddress attr. // This function needs to be called even if the function body is not -- cgit v1.2.3