This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository libcxxabi.
from 436072f libc++abi: build with -fvisibility=hidden new 4174e8b [libcxxabi] Introduce a -fno-exceptions libc++abi libary variant
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: CMakeLists.txt | 18 +++++-- src/CMakeLists.txt | 9 +++- src/cxa_aux_runtime.cpp | 12 +++++ src/cxa_handlers.cpp | 8 +-- src/cxa_new_delete.cpp | 12 +++++ src/cxa_noexception.cpp | 60 ++++++++++++++++++++++ test/CMakeLists.txt | 1 + test/backtrace_test.pass.cpp | 3 ++ test/catch_array_01.pass.cpp | 2 +- test/catch_array_02.pass.cpp | 1 + test/catch_class_01.pass.cpp | 2 + test/catch_class_02.pass.cpp | 2 + test/catch_class_03.pass.cpp | 2 + test/catch_class_04.pass.cpp | 2 + test/catch_const_pointer_nullptr.pass.cpp | 2 + test/catch_function_01.pass.cpp | 1 + test/catch_function_02.pass.cpp | 1 + test/catch_in_noexcept.pass.cpp | 2 +- test/catch_member_data_pointer_01.pass.cpp | 2 + test/catch_member_function_pointer_01.pass.cpp | 1 + test/catch_member_pointer_nullptr.pass.cpp | 2 + test/catch_multi_level_pointer.pass.cpp | 2 + test/catch_pointer_nullptr.pass.cpp | 2 +- test/catch_pointer_reference.pass.cpp | 2 + test/catch_ptr.pass.cpp | 2 + test/catch_ptr_02.pass.cpp | 2 + test/cxa_bad_cast.pass.cpp | 55 ++++++++++++++++++++ test/cxa_bad_typeid.pass.cpp | 55 ++++++++++++++++++++ test/incomplete_type.sh.cpp | 2 + test/inherited_exception.pass.cpp | 2 + test/libcxxabi/test/config.py | 7 ++- test/lit.site.cfg.in | 1 + test/noexception1.pass.cpp | 38 ++++++++++++++ test/noexception2.pass.cpp | 38 ++++++++++++++ test/noexception3.pass.cpp | 38 ++++++++++++++ ...t_exceptions.pass.cpp => noexception4.pass.cpp} | 25 ++++----- test/test_aux_runtime.pass.cpp | 2 + test/test_aux_runtime_op_array_new.pass.cpp | 2 + test/test_guard.pass.cpp | 4 ++ test/test_vector1.pass.cpp | 21 +++++++- test/test_vector2.pass.cpp | 2 + test/test_vector3.pass.cpp | 2 + test/uncaught_exceptions.pass.cpp | 2 + test/unwind_01.pass.cpp | 2 + test/unwind_02.pass.cpp | 2 + test/unwind_03.pass.cpp | 2 + test/unwind_04.pass.cpp | 2 + test/unwind_05.pass.cpp | 2 + test/unwind_06.pass.cpp | 2 + 49 files changed, 430 insertions(+), 33 deletions(-) create mode 100644 src/cxa_noexception.cpp create mode 100644 test/cxa_bad_cast.pass.cpp create mode 100644 test/cxa_bad_typeid.pass.cpp create mode 100644 test/noexception1.pass.cpp create mode 100644 test/noexception2.pass.cpp create mode 100644 test/noexception3.pass.cpp copy test/{uncaught_exceptions.pass.cpp => noexception4.pass.cpp} (56%)