mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-19 04:32:19 +00:00
[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:
parent
014f9fd863
commit
41dac4aa87
@ -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())
|
||||
|
Loading…
x
Reference in New Issue
Block a user