This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from 3f79e28a57 [NFC][OpenMP] Add new test for parallel for code generation. new a9671c2b45 PR26547: alignof should return ABI alignment, not preferred [...]
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 | 20 +++++++++ include/clang/AST/Stmt.h | 2 +- include/clang/ASTMatchers/ASTMatchers.h | 5 ++- include/clang/Basic/DiagnosticSemaKinds.td | 22 ++++++---- include/clang/Basic/LangOptions.h | 6 +++ include/clang/Basic/TypeTraits.h | 6 +++ lib/AST/ASTDumper.cpp | 3 ++ lib/AST/Expr.cpp | 2 +- lib/AST/ExprConstant.cpp | 37 +++++++++++----- lib/AST/ItaniumMangle.cpp | 1 + lib/AST/StmtPrinter.cpp | 3 ++ lib/Frontend/CompilerInvocation.cpp | 2 + lib/Parse/ParseExpr.cpp | 4 +- lib/Sema/SemaChecking.cpp | 5 ++- lib/Sema/SemaExpr.cpp | 19 ++++---- test/Headers/thumbv7-apple-ios-types.cpp | 6 +-- test/Sema/align-x86-abi7.c | 21 +++++++++ test/Sema/align-x86.c | 69 +++++++++++++++--------------- test/SemaCXX/align-x86-abi7.cpp | 25 +++++++++++ test/SemaCXX/align-x86.cpp | 62 +++++++++++++++++++++++++++ test/SemaCXX/alignof.cpp | 20 ++++----- 21 files changed, 258 insertions(+), 82 deletions(-) create mode 100644 test/Sema/align-x86-abi7.c create mode 100644 test/SemaCXX/align-x86-abi7.cpp create mode 100644 test/SemaCXX/align-x86.cpp