This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository libcxx.
from d3298ad Revert "Split exception.cpp and new.cpp implementation into d [...] new 1edf316 Recommit "Split exception.cpp and new.cpp implementation into [...]
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 | 3 + cmake/Modules/HandleLibCXXABI.cmake | 8 +- include/exception | 6 + include/new | 26 +- include/typeinfo | 7 +- src/exception.cpp | 327 +-------------------- src/new.cpp | 158 +++------- src/support/runtime/exception_fallback.ipp | 182 ++++++++++++ .../support/runtime/exception_glibcxx.ipp | 35 ++- .../support/runtime/exception_libcxxabi.ipp | 29 +- src/support/runtime/exception_libcxxrt.ipp | 41 +++ src/support/runtime/exception_msvc.ipp | 89 ++++++ src/support/runtime/exception_pointer_cxxabi.ipp | 74 +++++ src/support/runtime/exception_pointer_glibcxx.ipp | 74 +++++ .../runtime/exception_pointer_unimplemented.ipp | 80 +++++ .../support/runtime/new_handler_fallback.ipp | 23 +- src/typeinfo.cpp | 67 +---- 17 files changed, 677 insertions(+), 552 deletions(-) create mode 100644 src/support/runtime/exception_fallback.ipp copy test/std/depr/depr.c.headers/errno_h.pass.cpp => src/support/runtime/exceptio [...] copy test/std/depr/depr.c.headers/errno_h.pass.cpp => src/support/runtime/exceptio [...] create mode 100644 src/support/runtime/exception_libcxxrt.ipp create mode 100644 src/support/runtime/exception_msvc.ipp create mode 100644 src/support/runtime/exception_pointer_cxxabi.ipp create mode 100644 src/support/runtime/exception_pointer_glibcxx.ipp create mode 100644 src/support/runtime/exception_pointer_unimplemented.ipp copy test/std/utilities/variant/variant.variant/variant_empty.fail.cpp => src/supp [...]