This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from 4f45cc6913 [OpenMP] Enable the existing nocudalib flag for OpenMP offlo [...] new 156b679450 Allow specifying sanitizers in blacklists
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 | 12 +++- docs/SanitizerSpecialCaseList.rst | 32 ++++++++--- include/clang/Basic/SanitizerBlacklist.h | 15 ++--- include/clang/Basic/SanitizerSpecialCaseList.h | 54 ++++++++++++++++++ lib/AST/Decl.cpp | 12 ++-- lib/Basic/CMakeLists.txt | 1 + lib/Basic/SanitizerBlacklist.cpp | 27 +++++---- lib/Basic/SanitizerSpecialCaseList.cpp | 64 ++++++++++++++++++++++ lib/Basic/XRayLists.cpp | 14 +++-- lib/CodeGen/CGClass.cpp | 37 +++++-------- lib/CodeGen/CGDeclCXX.cpp | 30 ++++++---- lib/CodeGen/CGExpr.cpp | 2 +- lib/CodeGen/CodeGenFunction.cpp | 15 ++++- lib/CodeGen/CodeGenModule.cpp | 20 ++++--- lib/CodeGen/CodeGenModule.h | 3 +- .../sanitizer-special-case-list.sanitized.txt | 4 ++ .../sanitizer-special-case-list.unsanitized1.txt | 2 + .../sanitizer-special-case-list.unsanitized2.txt | 4 ++ .../sanitizer-special-case-list.unsanitized3.txt | 4 ++ .../sanitizer-special-case-list.unsanitized4.txt | 4 ++ test/CodeGen/sanitizer-special-case-list.c | 26 +++++++++ test/CodeGenCXX/cfi-blacklist.cpp | 16 +++++- 22 files changed, 310 insertions(+), 88 deletions(-) create mode 100644 include/clang/Basic/SanitizerSpecialCaseList.h create mode 100644 lib/Basic/SanitizerSpecialCaseList.cpp create mode 100644 test/CodeGen/Inputs/sanitizer-special-case-list.sanitized.txt create mode 100644 test/CodeGen/Inputs/sanitizer-special-case-list.unsanitized1.txt create mode 100644 test/CodeGen/Inputs/sanitizer-special-case-list.unsanitized2.txt create mode 100644 test/CodeGen/Inputs/sanitizer-special-case-list.unsanitized3.txt create mode 100644 test/CodeGen/Inputs/sanitizer-special-case-list.unsanitized4.txt create mode 100644 test/CodeGen/sanitizer-special-case-list.c