[compiler-rt] f768e53 - [dfsan] Add missing functions to done_abilist.txt
Jin Xin Ng via llvm-commits
llvm-commits at lists.llvm.org
Fri Jun 30 10:39:51 PDT 2023
Author: Jin Xin Ng
Date: 2023-06-30T17:39:15Z
New Revision: f768e5310cf480152fad9599742a86664f2d1501
URL: https://github.com/llvm/llvm-project/commit/f768e5310cf480152fad9599742a86664f2d1501
DIFF: https://github.com/llvm/llvm-project/commit/f768e5310cf480152fad9599742a86664f2d1501.diff
LOG: [dfsan] Add missing functions to done_abilist.txt
__sanitizer_get_allocated_begin and __sanitizer_get_allocated_size_fast
were introduced recently in D147005 and D151360, but not added here,
leading to linker errors.
Differential Revision: https://reviews.llvm.org/D153680
Added:
Modified:
compiler-rt/lib/dfsan/done_abilist.txt
Removed:
################################################################################
diff --git a/compiler-rt/lib/dfsan/done_abilist.txt b/compiler-rt/lib/dfsan/done_abilist.txt
index 3820ff79309af5..84d1b518840134 100644
--- a/compiler-rt/lib/dfsan/done_abilist.txt
+++ b/compiler-rt/lib/dfsan/done_abilist.txt
@@ -451,8 +451,12 @@ fun:__sanitizer_get_estimated_allocated_size=uninstrumented
fun:__sanitizer_get_estimated_allocated_size=discard
fun:__sanitizer_get_ownership=uninstrumented
fun:__sanitizer_get_ownership=discard
+fun:__sanitizer_get_allocated_begin=uninstrumented
+fun:__sanitizer_get_allocated_begin=discard
fun:__sanitizer_get_allocated_size=uninstrumented
fun:__sanitizer_get_allocated_size=discard
+fun:__sanitizer_get_allocated_size_fast=uninstrumented
+fun:__sanitizer_get_allocated_size_fast=discard
fun:__sanitizer_print_stack_trace=uninstrumented
fun:__sanitizer_print_stack_trace=discard
More information about the llvm-commits
mailing list