This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from ecc330a87c Thread Safety Analysis: warn on nonsensical attributes. new 2cac4c7ed1 [coverage] Special-case calls to noreturn functions. new a40a94c65d Integrate Kostya's clang-proto-fuzzer with LLVM.
The 2 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/ProtobufMutator.cmake | 24 +++++ lib/CodeGen/CoverageMappingGen.cpp | 10 ++ test/CoverageMapping/md.cpp | 11 +++ test/CoverageMapping/switch.cpp | 13 +++ tools/clang-fuzzer/CMakeLists.txt | 57 ++++++++++-- tools/clang-fuzzer/ClangFuzzer.cpp | 37 +------- tools/clang-fuzzer/ExampleClangProtoFuzzer.cpp | 28 ++++++ tools/clang-fuzzer/README.txt | 73 +++++++++++++++ tools/clang-fuzzer/cxx_proto.proto | 93 +++++++++++++++++++ tools/clang-fuzzer/handle-cxx/CMakeLists.txt | 11 +++ .../{ClangFuzzer.cpp => handle-cxx/handle_cxx.cpp} | 29 +++--- tools/clang-fuzzer/handle-cxx/handle_cxx.h | 25 +++++ tools/clang-fuzzer/proto-to-cxx/CMakeLists.txt | 10 ++ tools/clang-fuzzer/proto-to-cxx/proto_to_cxx.cpp | 102 +++++++++++++++++++++ tools/clang-fuzzer/proto-to-cxx/proto_to_cxx.h | 22 +++++ .../proto-to-cxx/proto_to_cxx_main.cpp | 30 ++++++ 17 files changed, 521 insertions(+), 56 deletions(-) create mode 100644 cmake/modules/ProtobufMutator.cmake create mode 100644 tools/clang-fuzzer/ExampleClangProtoFuzzer.cpp create mode 100644 tools/clang-fuzzer/README.txt create mode 100644 tools/clang-fuzzer/cxx_proto.proto create mode 100644 tools/clang-fuzzer/handle-cxx/CMakeLists.txt copy tools/clang-fuzzer/{ClangFuzzer.cpp => handle-cxx/handle_cxx.cpp} (78%) create mode 100644 tools/clang-fuzzer/handle-cxx/handle_cxx.h create mode 100644 tools/clang-fuzzer/proto-to-cxx/CMakeLists.txt create mode 100644 tools/clang-fuzzer/proto-to-cxx/proto_to_cxx.cpp create mode 100644 tools/clang-fuzzer/proto-to-cxx/proto_to_cxx.h create mode 100644 tools/clang-fuzzer/proto-to-cxx/proto_to_cxx_main.cpp