This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from 1b1167f58f Recommit "[Clang] Pragma vectorize_width() implies vectorize [...] new 414670be4e [UBSan][clang][compiler-rt] Applying non-zero offset to null [...]
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/ReleaseNotes.rst | 45 ++- docs/UndefinedBehaviorSanitizer.rst | 3 +- lib/CodeGen/CGExprScalar.cpp | 149 +++++--- .../catch-nullptr-and-nonzero-offset-blacklist.c | 34 ++ ...-nullptr-and-nonzero-offset-in-offsetof-idiom.c | 35 ++ ...tr-and-nonzero-offset-when-nullptr-is-defined.c | 66 ++++ test/CodeGen/catch-nullptr-and-nonzero-offset.c | 421 +++++++++++++++++++++ test/CodeGen/catch-pointer-overflow-volatile.c | 54 +++ test/CodeGen/catch-pointer-overflow.c | 294 ++++++++++++++ test/CodeGen/ubsan-pointer-overflow.c | 123 ++++++ test/CodeGen/ubsan-pointer-overflow.m | 193 ---------- ...ullptr-and-nonzero-offset-in-offsetof-idiom.cpp | 24 ++ 12 files changed, 1196 insertions(+), 245 deletions(-) create mode 100644 test/CodeGen/catch-nullptr-and-nonzero-offset-blacklist.c create mode 100644 test/CodeGen/catch-nullptr-and-nonzero-offset-in-offsetof-idiom.c create mode 100644 test/CodeGen/catch-nullptr-and-nonzero-offset-when-nullptr-is-d [...] create mode 100644 test/CodeGen/catch-nullptr-and-nonzero-offset.c create mode 100644 test/CodeGen/catch-pointer-overflow-volatile.c create mode 100644 test/CodeGen/catch-pointer-overflow.c create mode 100644 test/CodeGen/ubsan-pointer-overflow.c create mode 100644 test/CodeGenCXX/catch-nullptr-and-nonzero-offset-in-offsetof-idiom.cpp