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 c76433cf0 [libFuzzer][Windows] Reenable passing tests new 41a38ef45 [scudo] Initial standalone skeleton check-in
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: cmake/config-ix.cmake | 12 ++ lib/CMakeLists.txt | 3 + lib/scudo/standalone/CMakeLists.txt | 54 ++++++ lib/scudo/standalone/atomic_helpers.h | 131 +++++++++++++++ .../aeabi_drsub.c => scudo/standalone/empty.cc} | 14 +- lib/scudo/standalone/internal_defs.h | 135 +++++++++++++++ lib/scudo/standalone/list.h | 156 +++++++++++++++++ lib/scudo/standalone/platform.h | 70 ++++++++ lib/scudo/standalone/tests/CMakeLists.txt | 50 ++++++ lib/scudo/standalone/tests/atomic_test.cc | 112 +++++++++++++ lib/scudo/standalone/tests/list_test.cc | 185 +++++++++++++++++++++ .../standalone/tests/scudo_unit_test_main.cc} | 7 +- test/scudo/CMakeLists.txt | 2 + test/scudo/standalone/CMakeLists.txt | 15 ++ test/scudo/standalone/unit/lit.site.cfg.in | 12 ++ 15 files changed, 942 insertions(+), 16 deletions(-) create mode 100644 lib/scudo/standalone/CMakeLists.txt create mode 100644 lib/scudo/standalone/atomic_helpers.h copy lib/{builtins/arm/aeabi_drsub.c => scudo/standalone/empty.cc} (53%) create mode 100644 lib/scudo/standalone/internal_defs.h create mode 100644 lib/scudo/standalone/list.h create mode 100644 lib/scudo/standalone/platform.h create mode 100644 lib/scudo/standalone/tests/CMakeLists.txt create mode 100644 lib/scudo/standalone/tests/atomic_test.cc create mode 100644 lib/scudo/standalone/tests/list_test.cc copy lib/{xray/tests/unit/xray_unit_test_main.cc => scudo/standalone/tests/scudo_u [...] create mode 100644 test/scudo/standalone/CMakeLists.txt create mode 100644 test/scudo/standalone/unit/lit.site.cfg.in