This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from cd626d1139a [ORC] Fix BuildingAJIT tutorial examples that were broken b [...] new 62e9680cdc4 [ORC] Add a "lazy call-through" utility based on the same u [...]
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: include/llvm/ExecutionEngine/Orc/LazyReexports.h | 191 +++++++++++++++++++ lib/ExecutionEngine/Orc/CMakeLists.txt | 1 + lib/ExecutionEngine/Orc/LazyReexports.cpp | 204 +++++++++++++++++++++ unittests/ExecutionEngine/Orc/CMakeLists.txt | 1 + unittests/ExecutionEngine/Orc/CoreAPIsTest.cpp | 38 ---- .../Orc/LazyCallThroughAndReexportsTest.cpp | 75 ++++++++ unittests/ExecutionEngine/Orc/OrcTestCommon.h | 38 ++++ 7 files changed, 510 insertions(+), 38 deletions(-) create mode 100644 include/llvm/ExecutionEngine/Orc/LazyReexports.h create mode 100644 lib/ExecutionEngine/Orc/LazyReexports.cpp create mode 100644 unittests/ExecutionEngine/Orc/LazyCallThroughAndReexportsTest.cpp