This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from 0bb7730cf5 Sema: Fix explicit address space cast in C++ new 9eb2866868 Implement cpu_dispatch/cpu_specific Multiversioning
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: include/clang/AST/Decl.h | 7 + include/clang/Basic/Attr.td | 22 + include/clang/Basic/AttrDocs.td | 59 +++ include/clang/Basic/DiagnosticGroups.td | 4 + include/clang/Basic/DiagnosticSemaKinds.td | 35 +- include/clang/Basic/TargetInfo.h | 21 + include/clang/Basic/X86Target.def | 47 +++ lib/AST/Decl.cpp | 8 + lib/Basic/Targets/X86.cpp | 32 ++ lib/Basic/Targets/X86.h | 8 + lib/CodeGen/CGBuiltin.cpp | 12 +- lib/CodeGen/CodeGenFunction.cpp | 52 ++- lib/CodeGen/CodeGenFunction.h | 35 +- lib/CodeGen/CodeGenModule.cpp | 170 ++++++-- lib/CodeGen/CodeGenModule.h | 9 +- lib/Parse/ParseDecl.cpp | 42 +- lib/Sema/AnalysisBasedWarnings.cpp | 5 + lib/Sema/Sema.cpp | 46 ++- lib/Sema/SemaDecl.cpp | 451 +++++++++++++++------ lib/Sema/SemaDeclAttr.cpp | 48 +++ lib/Sema/SemaExpr.cpp | 15 +- lib/Sema/SemaOverload.cpp | 61 ++- test/CodeGen/attr-cpuspecific.c | 101 +++++ ...pragma-attribute-supported-attributes-list.test | 4 +- test/Sema/attr-cpuspecific.c | 96 +++++ test/SemaCXX/attr-cpuspecific.cpp | 111 +++++ utils/TableGen/ClangAttrEmitter.cpp | 38 ++ 27 files changed, 1317 insertions(+), 222 deletions(-) create mode 100644 test/CodeGen/attr-cpuspecific.c create mode 100644 test/Sema/attr-cpuspecific.c create mode 100644 test/SemaCXX/attr-cpuspecific.cpp