This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository compiler-rt.
from 561644d [sancov] Add new sanitizer coverage functions to the internal [...] new f23ad26 [asan] Export __sancov_* symbols symbols. new fb6776b [sanitizer] Define as weak, functions that are declared as weak. new a798c48 [sanitizer] Add list of symbols exported in sanitizers' interface.
The 3 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: lib/asan/asan.syms.extra | 1 + lib/asan/asan_interface.inc | 167 +++++++++++++++++++++ lib/asan/asan_interface_internal.h | 6 +- lib/asan/asan_win_dll_thunk.cc | 2 - .../sanitizer_allocator_interface.h | 4 +- lib/sanitizer_common/sanitizer_common.cc | 3 +- .../sanitizer_common_interface.inc | 34 +++++ ...ain.cc => sanitizer_common_interface_posix.inc} | 17 +-- lib/sanitizer_common/sanitizer_common_libcdep.cc | 4 +- .../sanitizer_coverage_interface.inc | 40 +++++ lib/sanitizer_common/weak_symbols.txt | 2 + lib/ubsan/ubsan_interface.inc | 43 ++++++ .../TestCases/Darwin/interface_symbols_darwin.c | 78 +++------- .../asan/TestCases/Linux/interface_symbols_linux.c | 76 +++------- test/asan/TestCases/Windows/dll_host.cc | 30 ++-- .../TestCases/Windows/interface_symbols_windows.c | 51 +++++++ 16 files changed, 410 insertions(+), 148 deletions(-) create mode 100644 lib/asan/asan_interface.inc create mode 100644 lib/sanitizer_common/sanitizer_common_interface.inc copy lib/sanitizer_common/{tests/sanitizer_nolibc_test_main.cc => sanitizer_common [...] create mode 100644 lib/sanitizer_common/sanitizer_coverage_interface.inc create mode 100644 lib/ubsan/ubsan_interface.inc create mode 100644 test/asan/TestCases/Windows/interface_symbols_windows.c