This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 2a641f4cd13 [PPC] Refine checks for emiting TOC restore nop and tail-ca [...] new 943140e61c1 Introduce FuzzMutate library
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/FuzzMutate/IRMutator.h | 106 +++++++++ include/llvm/FuzzMutate/OpDescriptor.h | 193 +++++++++++++++ include/llvm/FuzzMutate/Operations.h | 54 +++++ include/llvm/FuzzMutate/Random.h | 97 ++++++++ include/llvm/FuzzMutate/RandomIRBuilder.h | 62 +++++ lib/CMakeLists.txt | 1 + lib/FuzzMutate/CMakeLists.txt | 12 + lib/FuzzMutate/IRMutator.cpp | 183 +++++++++++++++ lib/FuzzMutate/LLVMBuild.txt | 22 ++ lib/FuzzMutate/OpDescriptor.cpp | 38 +++ lib/FuzzMutate/Operations.cpp | 312 +++++++++++++++++++++++++ lib/FuzzMutate/RandomIRBuilder.cpp | 140 +++++++++++ unittests/CMakeLists.txt | 1 + unittests/FuzzMutate/CMakeLists.txt | 10 + unittests/FuzzMutate/OperationsTest.cpp | 323 ++++++++++++++++++++++++++ unittests/FuzzMutate/ReservoirSamplerTest.cpp | 69 ++++++ 16 files changed, 1623 insertions(+) create mode 100644 include/llvm/FuzzMutate/IRMutator.h create mode 100644 include/llvm/FuzzMutate/OpDescriptor.h create mode 100644 include/llvm/FuzzMutate/Operations.h create mode 100644 include/llvm/FuzzMutate/Random.h create mode 100644 include/llvm/FuzzMutate/RandomIRBuilder.h create mode 100644 lib/FuzzMutate/CMakeLists.txt create mode 100644 lib/FuzzMutate/IRMutator.cpp create mode 100644 lib/FuzzMutate/LLVMBuild.txt create mode 100644 lib/FuzzMutate/OpDescriptor.cpp create mode 100644 lib/FuzzMutate/Operations.cpp create mode 100644 lib/FuzzMutate/RandomIRBuilder.cpp create mode 100644 unittests/FuzzMutate/CMakeLists.txt create mode 100644 unittests/FuzzMutate/OperationsTest.cpp create mode 100644 unittests/FuzzMutate/ReservoirSamplerTest.cpp