This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_gcc_check/master-arm in repository toolchain/ci/gcc.
from 5469d58d662 c++: P2360R0: Extend init-stmt to allow alias-decl [PR102617] adds 7d37abedf58 rs6000: Fixes for tests including only <x86intrin.h> adds c9bf4d4354b c++tools: Fix memory leak adds 99af0b2f0fe Fortran: error recovery on initializing invalid derived typ [...] adds cfcb27cfcb1 Fortran: do not restrict PDT KIND and LEN type parameters t [...] adds 8c59f411835 [PR102842] Consider all outputs in generation of matching reloads adds 662f64a1f9e Fortran: [PDT] KIND and LEN type parameters are mutually exclusive adds 0ec53a3df53 Fortran: error recovery on invalid code with SELECT TYPE adds 65f711203d6 Fixup MAINTAINERS file new 88b504b7a8c Detect overflow by atomic functions [PR102453]. new 9a27acc30a3 Make full use of context-sensitive ranges in access warnings. new 1ff4dbddcf7 Improve/correct detection of overlapping aggregates [PR1022 [...]
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: MAINTAINERS | 1 - c++tools/resolver.cc | 14 +- gcc/builtins.c | 29 +- gcc/config.gcc | 2 +- gcc/config/rs6000/{x86intrin.h => immintrin.h} | 31 +- gcc/config/rs6000/{x86intrin.h => x86gprintrin.h} | 27 +- gcc/config/rs6000/x86intrin.h | 10 +- gcc/fortran/decl.c | 16 - gcc/fortran/resolve.c | 11 +- gcc/fortran/symbol.c | 1 + gcc/gimple-array-bounds.cc | 16 +- gcc/gimple-array-bounds.h | 4 + gcc/gimple-ssa-sprintf.c | 260 ++++++----- gcc/gimple-ssa-warn-access.cc | 275 +++++++---- gcc/gimple-ssa-warn-access.h | 3 - gcc/lra-constraints.c | 17 +- gcc/pointer-query.cc | 292 +++++++++--- gcc/pointer-query.h | 62 ++- gcc/testsuite/c-c++-common/gomp/atomic-4.c | 2 +- gcc/testsuite/g++.target/arm/pr102842.C | 30 ++ gcc/testsuite/gcc.dg/Warray-bounds-90.c | 147 ++++++ gcc/testsuite/gcc.dg/Wrestrict-23.c | 146 ++++++ gcc/testsuite/gcc.dg/Wstringop-overflow-22.c | 11 +- gcc/testsuite/gcc.dg/Wstringop-overflow-77.c | 516 ++++++++++++++++++++ gcc/testsuite/gcc.dg/Wstringop-overflow-78.c | 518 +++++++++++++++++++++ gcc/testsuite/gcc.dg/Wstringop-overflow-79.c | 70 +++ gcc/testsuite/gcc.dg/Wstringop-overflow-80.c | 70 +++ gcc/testsuite/gcc.dg/Wstringop-overflow-81.c | 38 ++ .../gcc.dg/tree-ssa/builtin-sprintf-warn-23.c | 24 +- gcc/testsuite/gcc.target/powerpc/pr78102.c | 4 +- gcc/testsuite/gfortran.dg/pdt_32.f03 | 17 + gcc/testsuite/gfortran.dg/pdt_4.f03 | 4 +- gcc/testsuite/gfortran.dg/pr102816.f90 | 9 + gcc/testsuite/gfortran.dg/pr86551.f90 | 12 + gcc/tree-ssa-strlen.c | 8 +- .../21_strings/basic_string/capacity/1.cc | 2 +- .../filesystem/path/factory/u8path-char8_t.cc | 3 +- 37 files changed, 2253 insertions(+), 449 deletions(-) copy gcc/config/rs6000/{x86intrin.h => immintrin.h} (56%) copy gcc/config/rs6000/{x86intrin.h => x86gprintrin.h} (54%) create mode 100644 gcc/testsuite/g++.target/arm/pr102842.C create mode 100644 gcc/testsuite/gcc.dg/Warray-bounds-90.c create mode 100644 gcc/testsuite/gcc.dg/Wrestrict-23.c create mode 100644 gcc/testsuite/gcc.dg/Wstringop-overflow-77.c create mode 100644 gcc/testsuite/gcc.dg/Wstringop-overflow-78.c create mode 100644 gcc/testsuite/gcc.dg/Wstringop-overflow-79.c create mode 100644 gcc/testsuite/gcc.dg/Wstringop-overflow-80.c create mode 100644 gcc/testsuite/gcc.dg/Wstringop-overflow-81.c create mode 100644 gcc/testsuite/gfortran.dg/pdt_32.f03 create mode 100644 gcc/testsuite/gfortran.dg/pr102816.f90 create mode 100644 gcc/testsuite/gfortran.dg/pr86551.f90