This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from 47c3d0d Add support for ASan odr_indicator. new abc57c3 S/390: Fix vector all/any cc modes. new e17ed6e S/390: Merge compare of compare results new 8d0e98e Add testcase missing in last commit. new c4a77d6 S/390: Add vector pack/unpack patterns. new 292e369 S/390: Define vectorization_cost hook new f28fa86 PR target/77822: Add helper macro EXTRACT_ARGS_IN_RANGE to system.h. new 82212dc PR target/77822: S390: Validate argument range of {zero,sign} [...] new b22eef9 S/390: Fix litpool-r3-1.c. new c95f3fa Do not simplify "(and (reg) (const bit)" to if_then_else.
The 9 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: gcc/ChangeLog | 71 +++++ gcc/combine.c | 12 + gcc/config/s390/s390-modes.def | 72 ++--- gcc/config/s390/s390-protos.h | 1 + gcc/config/s390/s390.c | 305 ++++++++++++-------- gcc/config/s390/s390.h | 12 + gcc/config/s390/s390.md | 22 +- gcc/config/s390/vector.md | 198 ++++++++++++- gcc/config/s390/vx-builtins.md | 45 ++- gcc/rtl.h | 10 + gcc/testsuite/ChangeLog | 25 ++ gcc/testsuite/gcc.target/s390/litpool-r3-1.c | 2 +- gcc/testsuite/gcc.target/s390/pr77822-1.C | 21 ++ gcc/testsuite/gcc.target/s390/pr77822-2.c | 307 +++++++++++++++++++++ gcc/testsuite/gcc.target/s390/s390.exp | 8 +- .../gcc.target/s390/vector/vec-nopeel-1.c | 17 ++ .../gcc.target/s390/vector/vec-scalar-cmp-1.c | 24 +- gcc/testsuite/gcc.target/s390/zvector/vec-cmp-1.c | 173 ++++++++++++ gcc/testsuite/gcc.target/s390/zvector/vec-cmp-2.c | 203 ++++++++++++++ 19 files changed, 1334 insertions(+), 194 deletions(-) create mode 100644 gcc/testsuite/gcc.target/s390/pr77822-1.C create mode 100644 gcc/testsuite/gcc.target/s390/pr77822-2.c create mode 100644 gcc/testsuite/gcc.target/s390/vector/vec-nopeel-1.c create mode 100644 gcc/testsuite/gcc.target/s390/zvector/vec-cmp-1.c create mode 100644 gcc/testsuite/gcc.target/s390/zvector/vec-cmp-2.c