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 ef8153e84 [GWP-ASan] D63736 broke ARMv7/v8 sanitizer bots. new 09f9fd488 [scudo][standalone] Introduce the C & C++ wrappers [fixed]
The 1 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/scudo/standalone/CMakeLists.txt | 75 +++++--- lib/scudo/standalone/flags_parser.cc | 1 + lib/scudo/standalone/flags_parser.h | 1 - lib/scudo/standalone/tests/CMakeLists.txt | 44 +++-- lib/scudo/standalone/tests/wrappers_c_test.cc | 225 ++++++++++++++++++++++++ lib/scudo/standalone/tests/wrappers_cpp_test.cc | 117 ++++++++++++ lib/scudo/standalone/tsd.h | 5 + lib/scudo/standalone/wrappers_c.cc | 39 ++++ lib/scudo/standalone/wrappers_c.h | 52 ++++++ lib/scudo/standalone/wrappers_c.inc | 176 ++++++++++++++++++ lib/scudo/standalone/wrappers_c_bionic.cc | 49 ++++++ lib/scudo/standalone/wrappers_c_checks.h | 67 +++++++ lib/scudo/standalone/wrappers_cpp.cc | 107 +++++++++++ 13 files changed, 921 insertions(+), 37 deletions(-) create mode 100644 lib/scudo/standalone/tests/wrappers_c_test.cc create mode 100644 lib/scudo/standalone/tests/wrappers_cpp_test.cc create mode 100644 lib/scudo/standalone/wrappers_c.cc create mode 100644 lib/scudo/standalone/wrappers_c.h create mode 100644 lib/scudo/standalone/wrappers_c.inc create mode 100644 lib/scudo/standalone/wrappers_c_bionic.cc create mode 100644 lib/scudo/standalone/wrappers_c_checks.h create mode 100644 lib/scudo/standalone/wrappers_cpp.cc