This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from c563ba58b4 [clang] Remove redundant check-prefix=CHECK from tests. NFC. new 4150789291 [SystemZ] Add support for IBM z14 processor (1/3) new ef3b1915da [SystemZ] Add support for IBM z14 processor (2/3) new c610c0b0d7 [SystemZ] Add support for IBM z14 processor (3/3)
The 3 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/BuiltinsSystemZ.def | 24 + lib/Basic/Targets.cpp | 6 +- lib/CodeGen/CGBuiltin.cpp | 102 +- lib/Headers/vecintrin.h | 1572 +++++++++++++++++++++++- lib/Sema/DeclSpec.cpp | 6 +- lib/Sema/SemaChecking.cpp | 7 + test/CodeGen/builtins-systemz-vector2-error.c | 61 + test/CodeGen/builtins-systemz-vector2.c | 136 ++ test/CodeGen/builtins-systemz-zvector-error.c | 38 +- test/CodeGen/builtins-systemz-zvector.c | 88 ++ test/CodeGen/builtins-systemz-zvector2-error.c | 153 +++ test/CodeGen/builtins-systemz-zvector2.c | 545 ++++++++ test/CodeGen/systemz-abi-vector.c | 4 + test/CodeGen/systemz-abi.c | 4 + test/CodeGen/target-data.c | 4 + test/CodeGen/zvector2.c | 194 +++ test/Driver/systemz-march.c | 4 + test/Preprocessor/predefined-arch-macros.c | 21 +- test/Sema/zvector2.c | 211 ++++ 19 files changed, 3130 insertions(+), 50 deletions(-) create mode 100644 test/CodeGen/builtins-systemz-vector2-error.c create mode 100644 test/CodeGen/builtins-systemz-vector2.c create mode 100644 test/CodeGen/builtins-systemz-zvector2-error.c create mode 100644 test/CodeGen/builtins-systemz-zvector2.c create mode 100644 test/CodeGen/zvector2.c create mode 100644 test/Sema/zvector2.c