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 e35e7c0 tsan: fix windows build new 9b1dbf0 [compiler-rt] [XRay] Basic initialization and flag definition [...]
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/config-ix.cmake | 5 + include/CMakeLists.txt | 13 +- include/xray/xray_interface.h | 66 ++++++++ lib/CMakeLists.txt | 4 + lib/xray/CMakeLists.txt | 47 ++++++ lib/xray/xray_flags.cc | 61 +++++++ lib/xray/xray_flags.h | 37 +++++ .../interception_mac.cc => xray/xray_flags.inc} | 16 +- lib/xray/xray_init.cc | 68 ++++++++ lib/xray/xray_interface.cc | 179 +++++++++++++++++++++ lib/xray/xray_interface_internal.h | 40 +++++ lib/xray/xray_trampoline_x86.S | 93 +++++++++++ 13 files changed, 621 insertions(+), 10 deletions(-) create mode 100644 include/xray/xray_interface.h create mode 100644 lib/xray/CMakeLists.txt create mode 100644 lib/xray/xray_flags.cc create mode 100644 lib/xray/xray_flags.h copy lib/{interception/interception_mac.cc => xray/xray_flags.inc} (57%) create mode 100644 lib/xray/xray_init.cc create mode 100644 lib/xray/xray_interface.cc create mode 100644 lib/xray/xray_interface_internal.h create mode 100644 lib/xray/xray_trampoline_x86.S