This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 62431ad72c3 [LLVM-MCA][X86] Add missing VCMPESTR/VCMPESTR tests new 04756ee5266 [ORC] Extract and tidy up JITTargetMachineBuilder, add unit test.
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/CompileUtils.h | 2 +- include/llvm/ExecutionEngine/Orc/ExecutionUtils.h | 43 -------- .../ExecutionEngine/Orc/JITTargetMachineBuilder.h | 118 +++++++++++++++++++++ include/llvm/ExecutionEngine/Orc/LLJIT.h | 3 + lib/ExecutionEngine/Orc/CMakeLists.txt | 1 + lib/ExecutionEngine/Orc/ExecutionUtils.cpp | 39 ------- .../Orc/JITTargetMachineBuilder.cpp | 55 ++++++++++ tools/lli/lli.cpp | 8 +- unittests/ExecutionEngine/Orc/CMakeLists.txt | 1 + .../Orc/JITTargetMachineBuilderTest.cpp | 52 +++++++++ .../Orc/LazyCallThroughAndReexportsTest.cpp | 2 +- 11 files changed, 238 insertions(+), 86 deletions(-) create mode 100644 include/llvm/ExecutionEngine/Orc/JITTargetMachineBuilder.h create mode 100644 lib/ExecutionEngine/Orc/JITTargetMachineBuilder.cpp create mode 100644 unittests/ExecutionEngine/Orc/JITTargetMachineBuilderTest.cpp