This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from 349642f320 [NFC] Fix AttributeList allocated_size for ParsedType. new 14549a3c6a Implemented proto to LLVM conversion and LLVM fuzz target Di [...] new 91b3d06607 Re-apply: Warning for framework headers using double quote includes
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: include/clang/Basic/DiagnosticGroups.td | 1 + include/clang/Basic/DiagnosticLexKinds.td | 5 + lib/Lex/HeaderSearch.cpp | 65 ++++++++- .../Inputs/double-quotes/A.framework/Headers/A.h | 6 + .../Inputs/double-quotes/A.framework/Headers/A0.h | 1 + .../A.framework/Modules/module.modulemap | 5 + test/Modules/Inputs/double-quotes/B.h | 1 + .../Inputs/double-quotes/X.framework/Headers/X.h | 1 + .../X.framework/Modules/module.modulemap | 4 + test/Modules/Inputs/double-quotes/a.hmap.json | 6 + .../Inputs/double-quotes/flat-header-path/Z.h | 1 + .../double-quotes/flat-header-path/Z.modulemap | 4 + test/Modules/Inputs/double-quotes/x.hmap.json | 7 + test/Modules/Inputs/double-quotes/z.yaml | 28 ++++ test/Modules/double-quotes.m | 39 ++++++ tools/clang-fuzzer/CMakeLists.txt | 22 ++- tools/clang-fuzzer/ExampleClangLLVMProtoFuzzer.cpp | 28 ++++ tools/clang-fuzzer/cxx_loop_proto.proto | 26 ++-- .../fuzzer-initialize/fuzzer_initialize.cpp | 7 + tools/clang-fuzzer/handle-cxx/handle_cxx.cpp | 6 - tools/clang-fuzzer/handle-llvm/CMakeLists.txt | 5 + tools/clang-fuzzer/handle-llvm/handle_llvm.cpp | 111 +++++++++++++++ tools/clang-fuzzer/handle-llvm/handle_llvm.h | 25 ++++ .../proto-to-cxx/loop_proto_to_cxx.cpp | 11 -- .../proto-to-cxx/loop_proto_to_cxx_main.cpp | 1 - tools/clang-fuzzer/proto-to-llvm/CMakeLists.txt | 14 ++ .../proto-to-llvm/loop_proto_to_llvm.cpp | 156 +++++++++++++++++++++ .../proto-to-llvm/loop_proto_to_llvm.h | 23 +++ .../loop_proto_to_llvm_main.cpp} | 11 +- 29 files changed, 577 insertions(+), 43 deletions(-) create mode 100644 test/Modules/Inputs/double-quotes/A.framework/Headers/A.h create mode 100644 test/Modules/Inputs/double-quotes/A.framework/Headers/A0.h create mode 100644 test/Modules/Inputs/double-quotes/A.framework/Modules/module.modulemap create mode 100644 test/Modules/Inputs/double-quotes/B.h create mode 100644 test/Modules/Inputs/double-quotes/X.framework/Headers/X.h create mode 100644 test/Modules/Inputs/double-quotes/X.framework/Modules/module.modulemap create mode 100644 test/Modules/Inputs/double-quotes/a.hmap.json create mode 100644 test/Modules/Inputs/double-quotes/flat-header-path/Z.h create mode 100644 test/Modules/Inputs/double-quotes/flat-header-path/Z.modulemap create mode 100644 test/Modules/Inputs/double-quotes/x.hmap.json create mode 100644 test/Modules/Inputs/double-quotes/z.yaml create mode 100644 test/Modules/double-quotes.m create mode 100644 tools/clang-fuzzer/ExampleClangLLVMProtoFuzzer.cpp create mode 100644 tools/clang-fuzzer/handle-llvm/CMakeLists.txt create mode 100644 tools/clang-fuzzer/handle-llvm/handle_llvm.cpp create mode 100644 tools/clang-fuzzer/handle-llvm/handle_llvm.h create mode 100644 tools/clang-fuzzer/proto-to-llvm/CMakeLists.txt create mode 100644 tools/clang-fuzzer/proto-to-llvm/loop_proto_to_llvm.cpp create mode 100644 tools/clang-fuzzer/proto-to-llvm/loop_proto_to_llvm.h copy tools/clang-fuzzer/{proto-to-cxx/loop_proto_to_cxx_main.cpp => proto-to-llvm/ [...]