This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from 0e4f59d7b4 [analyzer] Remove a debug print that was accidentally left around. new 1a78aeb17c Add support for __declspec(code_seg("segname"))
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/Basic/Attr.td | 7 ++ include/clang/Basic/AttrDocs.td | 12 +++ include/clang/Basic/DiagnosticSemaKinds.td | 12 ++- include/clang/Sema/Sema.h | 4 + lib/CodeGen/CodeGenModule.cpp | 12 ++- lib/Sema/SemaDecl.cpp | 79 ++++++++++++++++ lib/Sema/SemaDeclAttr.cpp | 69 +++++++++++++- lib/Sema/SemaDeclCXX.cpp | 34 +++++++ lib/Sema/SemaLambda.cpp | 4 + test/CodeGenCXX/code-seg.cpp | 139 +++++++++++++++++++++++++++++ test/CodeGenCXX/code-seg1.cpp | 87 ++++++++++++++++++ test/CodeGenCXX/code-seg2.cpp | 111 +++++++++++++++++++++++ test/CodeGenCXX/code-seg3.cpp | 65 ++++++++++++++ test/SemaCXX/code-seg.cpp | 105 ++++++++++++++++++++++ test/SemaCXX/code-seg1.cpp | 97 ++++++++++++++++++++ 15 files changed, 829 insertions(+), 8 deletions(-) create mode 100644 test/CodeGenCXX/code-seg.cpp create mode 100644 test/CodeGenCXX/code-seg1.cpp create mode 100644 test/CodeGenCXX/code-seg2.cpp create mode 100644 test/CodeGenCXX/code-seg3.cpp create mode 100644 test/SemaCXX/code-seg.cpp create mode 100644 test/SemaCXX/code-seg1.cpp