mirror of
https://github.com/RPCSX/llvm.git
synced 2025-04-03 16:51:42 +00:00
[libFuzzer] add 'weak' back to __sanitizer_malloc_hook and __sanitizer_free_hook
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@272116 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
fd9cb1a5c5
commit
819b4d1da2
@ -464,10 +464,12 @@ static thread_local MallocFreeTracer AllocTracer;
|
||||
// thread local storage is initialised leading to
|
||||
// crashes when accessing ``AllocTracer``.
|
||||
extern "C" {
|
||||
__attribute__((weak))
|
||||
void __sanitizer_malloc_hook(void *ptr, size_t size) {
|
||||
if (!LIBFUZZER_APPLE)
|
||||
AllocTracer.Mallocs++;
|
||||
}
|
||||
__attribute__((weak))
|
||||
void __sanitizer_free_hook(void *ptr) {
|
||||
if (!LIBFUZZER_APPLE)
|
||||
AllocTracer.Frees++;
|
||||
|
Loading…
x
Reference in New Issue
Block a user