This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from 265fa9857b [X86] Redefine avx512 packed fpclass intrinsics to return a [...] new 736ed08304 Implement CFI for indirect calls via a member function pointer.
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: docs/ControlFlowIntegrity.rst | 30 +++++++++++ docs/LTOVisibility.rst | 6 +-- include/clang/Basic/Sanitizers.def | 5 +- lib/CodeGen/CGClass.cpp | 4 +- lib/CodeGen/CGVTables.cpp | 43 ++++++++++----- lib/CodeGen/CodeGenFunction.h | 2 + lib/CodeGen/CodeGenModule.cpp | 89 ++++++++++++++++++++++--------- lib/CodeGen/CodeGenModule.h | 19 ++++++- lib/CodeGen/ItaniumCXXABI.cpp | 87 ++++++++++++++++++++++++++++-- lib/Driver/SanitizerArgs.cpp | 29 ++++++++-- lib/Driver/ToolChains/MSVC.cpp | 1 + test/CodeGenCXX/cfi-mfcall-incomplete.cpp | 12 +++++ test/CodeGenCXX/cfi-mfcall.cpp | 30 +++++++++++ test/CodeGenCXX/type-metadata-memfun.cpp | 31 +++++++++++ test/CodeGenCXX/type-metadata.cpp | 43 +++++++++++++++ test/Driver/fsanitize.c | 16 ++++-- 16 files changed, 387 insertions(+), 60 deletions(-) create mode 100644 test/CodeGenCXX/cfi-mfcall-incomplete.cpp create mode 100644 test/CodeGenCXX/cfi-mfcall.cpp create mode 100644 test/CodeGenCXX/type-metadata-memfun.cpp