[ASan] Behave the same for functions w/o sanitize_address attribute and blacklisted functions

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@209946 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Alexey Samsonov 2014-05-31 00:33:05 +00:00
parent 014f9fd863
commit 41dac4aa87

View File

@ -1310,7 +1310,6 @@ bool AddressSanitizer::InjectCoverage(Function &F,
}
bool AddressSanitizer::runOnFunction(Function &F) {
if (BL->isIn(F)) return false;
if (&F == AsanCtorFunction) return false;
if (F.getLinkage() == GlobalValue::AvailableExternallyLinkage) return false;
DEBUG(dbgs() << "ASAN instrumenting:\n" << F << "\n");
@ -1319,7 +1318,7 @@ bool AddressSanitizer::runOnFunction(Function &F) {
// If needed, insert __asan_init before checking for SanitizeAddress attr.
maybeInsertAsanInitAtFunctionEntry(F);
if (!F.hasFnAttribute(Attribute::SanitizeAddress))
if (!F.hasFnAttribute(Attribute::SanitizeAddress) || BL->isIn(F))
return false;
if (!ClDebugFunc.empty() && ClDebugFunc != F.getName())