This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from e70bd4ae02 Don't speculatively emit VTTs for classes unless we are able [...] new fc32b29ca7 [clang][ARC] Add ARCTargetInfo new 732444d289 [clang][slh] add attribute for speculative load hardening
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/Attr.td | 6 + include/clang/Basic/AttrDocs.td | 24 ++++ lib/Basic/CMakeLists.txt | 1 + lib/Basic/Targets.cpp | 4 + lib/Basic/Targets/{PNaCl.cpp => ARC.cpp} | 21 ++-- lib/Basic/Targets/{XCore.h => ARC.h} | 40 +++--- lib/CodeGen/CGCall.cpp | 4 + lib/CodeGen/TargetInfo.cpp | 133 ++++++++++++++++++++ lib/Sema/SemaDeclAttr.cpp | 3 + test/CodeGen/arc/arguments.c | 135 +++++++++++++++++++++ test/CodeGen/arc/struct-align.c | 26 ++++ test/CodeGen/attr-speculative-load-hardening.cpp | 18 +++ test/CodeGen/attr-speculative-load-hardening.m | 9 ++ test/CodeGen/target-data.c | 4 + ...pragma-attribute-supported-attributes-list.test | 3 +- test/SemaCXX/attr-speculative-load-hardening.cpp | 34 ++++++ 16 files changed, 427 insertions(+), 38 deletions(-) copy lib/Basic/Targets/{PNaCl.cpp => ARC.cpp} (54%) copy lib/Basic/Targets/{XCore.h => ARC.h} (60%) create mode 100644 test/CodeGen/arc/arguments.c create mode 100644 test/CodeGen/arc/struct-align.c create mode 100644 test/CodeGen/attr-speculative-load-hardening.cpp create mode 100644 test/CodeGen/attr-speculative-load-hardening.m create mode 100644 test/SemaCXX/attr-speculative-load-hardening.cpp