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 6bc959050 fix broken test new 92a5e92e9 Reland "[compiler-rt] Simple crtbegin.o and crtend.o implementation"
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 | 2 + cmake/Modules/AddCompilerRT.cmake | 52 ++++++++++++++------- cmake/config-ix.cmake | 8 ++++ lib/CMakeLists.txt | 4 ++ lib/crt/CMakeLists.txt | 90 ++++++++++++++++++++++++++++++++++++ lib/crt/crtbegin.c | 97 +++++++++++++++++++++++++++++++++++++++ lib/crt/crtend.c | 22 +++++++++ test/CMakeLists.txt | 3 ++ test/crt/CMakeLists.txt | 34 ++++++++++++++ test/crt/ctor_dtor.c | 22 +++++++++ test/crt/dso_handle.cpp | 33 +++++++++++++ test/crt/lit.cfg | 78 +++++++++++++++++++++++++++++++ test/crt/lit.site.cfg.in | 14 ++++++ 13 files changed, 442 insertions(+), 17 deletions(-) create mode 100644 lib/crt/CMakeLists.txt create mode 100644 lib/crt/crtbegin.c create mode 100644 lib/crt/crtend.c create mode 100644 test/crt/CMakeLists.txt create mode 100644 test/crt/ctor_dtor.c create mode 100644 test/crt/dso_handle.cpp create mode 100644 test/crt/lit.cfg create mode 100644 test/crt/lit.site.cfg.in