This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_gnu/gnu-master-arm-check_gcc in repository toolchain/ci/gcc.
from 60933a148ab analyzer: fix feasibility false +ve with overly complex svalues adds 863737b8de7 Revert "testsuite: mips: use noinline attribute instead of [...] adds 19e05058799 testsuite: mips: pass -finline/-fnoinline through adds 2c5d803d032 openmp: Diagnose invalid mixing of the attribute and pragma [...] adds 7f7364108f7 openmp: Add support for __has_attribute(omp::directive) and [...] adds 5b965dc49a6 libstdc++: Update documentation comments for namespace rel_ops adds 484acfa4cfe aarch64: Use memcpy to copy vector tables in vqtbl[234] intrinsics adds 5f65676eba1 aarch64: Use memcpy to copy vector tables in vqtbx[234] intrinsics adds f2f04d8b9d1 aarch64: Use memcpy to copy vector tables in vtbl[34] intrinsics adds 4848e283cca aarch64: Use memcpy to copy vector tables in vtbx4 intrinsics adds e8de7edde6c aarch64: Use memcpy to copy vector tables in vst4[q] intrinsics adds 95509ee2c13 aarch64: Use memcpy to copy vector tables in vst3[q] intrinsics adds 03148b8e508 aarch64: Use memcpy to copy vector tables in vst2[q] intrinsics adds 1711b045829 aarch64: Use memcpy to copy vector tables in vst1[q]_x4 intrinsics adds 3ea62a2b2ed libstdc++: Reduce headers included by <future> adds 085666673db x86: Don't return hard register when LRA is in progress adds ccf6e2c21be aarch64: Use memcpy to copy vector tables in vst1[q]_x3 intrinsics adds 50752b751ff aarch64: Use memcpy to copy vector tables in vst1[q]_x2 intrinsics adds 435f90187eb Use range_query object in array bounds class. adds 8408d34570c expmed: Fix store_integral_bit_field [PR101562] adds e314cfc371d Fortran: extend check for array arguments and reject CLASS [...] adds ead235f6013 Daily bump. adds 34dbb5f3464 include: Fix -Wundef warnings in ansidecl.h
No new revisions were added by this update.
Summary of changes: gcc/ChangeLog | 288 ++++++ gcc/DATESTAMP | 2 +- gcc/analyzer/ChangeLog | 16 + gcc/c-family/ChangeLog | 11 + gcc/c-family/c-lex.c | 15 +- gcc/c-family/c-pragma.h | 4 + gcc/config/aarch64/arm_neon.h | 1029 +++++++------------- gcc/config/i386/i386.c | 2 +- gcc/cp/ChangeLog | 16 + gcc/cp/parser.c | 40 +- gcc/cp/parser.h | 3 + gcc/expmed.c | 5 +- gcc/fortran/ChangeLog | 6 + gcc/fortran/check.c | 3 +- gcc/gimple-array-bounds.h | 4 +- gcc/testsuite/ChangeLog | 82 ++ gcc/testsuite/c-c++-common/gomp/attrs-1.c | 146 +++ gcc/testsuite/c-c++-common/gomp/attrs-2.c | 146 +++ gcc/testsuite/c-c++-common/gomp/attrs-3.c | 74 ++ gcc/testsuite/g++.dg/gomp/attrs-4.C | 61 ++ gcc/testsuite/g++.dg/gomp/attrs-5.C | 46 + gcc/testsuite/gcc.c-torture/compile/pr101562.c | 21 + .../aarch64/vector_structure_intrinsics.c | 207 ++++ gcc/testsuite/gcc.target/i386/pr101504.c | 23 + gcc/testsuite/gcc.target/mips/cfgcleanup-jalr2.c | 11 +- gcc/testsuite/gcc.target/mips/cfgcleanup-jalr3.c | 6 +- gcc/testsuite/gcc.target/mips/mips.exp | 1 + gcc/testsuite/gfortran.dg/pr101536.f90 | 33 + include/ansidecl.h | 6 +- libstdc++-v3/ChangeLog | 9 + libstdc++-v3/include/bits/stl_relops.h | 15 +- libstdc++-v3/include/std/future | 3 +- 32 files changed, 1646 insertions(+), 688 deletions(-) create mode 100644 gcc/testsuite/c-c++-common/gomp/attrs-1.c create mode 100644 gcc/testsuite/c-c++-common/gomp/attrs-2.c create mode 100644 gcc/testsuite/c-c++-common/gomp/attrs-3.c create mode 100644 gcc/testsuite/g++.dg/gomp/attrs-4.C create mode 100644 gcc/testsuite/g++.dg/gomp/attrs-5.C create mode 100644 gcc/testsuite/gcc.c-torture/compile/pr101562.c create mode 100644 gcc/testsuite/gcc.target/aarch64/vector_structure_intrinsics.c create mode 100644 gcc/testsuite/gcc.target/i386/pr101504.c create mode 100644 gcc/testsuite/gfortran.dg/pr101536.f90