Scrub double-conversion and add quick wrapper

This commit is contained in:
Justine Tunney 2022-06-26 04:58:44 -07:00
parent b1de862e16
commit 5cd0e876bd
46 changed files with 322 additions and 804 deletions

View file

@ -1277,6 +1277,12 @@ void __sanitizer_annotate_contiguous_container(char *beg, char *end,
__asan_poison(new_mid, end - new_mid, kAsanHeapOverrun);
}
void __asan_before_dynamic_init(const char *module_name) {
}
void __asan_after_dynamic_init(void) {
}
void __asan_install_malloc_hooks(void) {
HOOK(hook_free, __asan_free);
HOOK(hook_malloc, __asan_malloc);