This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_gnu_cross_check_gcc/master-arm in repository toolchain/ci/gcc.
from 1625e893cca [nvptx] Update help text for m64 adds a2eacdbd4c4 [nvptx] Add __PTX_ISA_VERSION_{MAJOR,MINOR}__ adds 1dca4ca1bf2 arm: temporarily disable 'local' pcs selection (PR96882) adds 3032df28f2a arm: correctly handle zero-sized bit-fields in AAPCS [PR102024] adds b243ad1afb7 aarch64: correctly handle zero-sized bit-fields in AAPCS64 [...] adds 9f9ccc4a578 Allow vsx_extract_<mode> to use Altivec registers. adds 89976d08248 c-family: Add -Wmisleading-indentation testcase [PR71637] adds d886a5248e6 gimple: Wrong -Wimplicit-fallthrough with if(1) [PR103597] adds 0712f356374 Fortran: character length of pointer assignments in structu [...]
No new revisions were added by this update.
Summary of changes: gcc/config/aarch64/aarch64.cc | 35 +++++- gcc/config/arm/arm.cc | 46 ++++++- gcc/config/nvptx/nvptx-c.cc | 9 ++ gcc/config/nvptx/nvptx-protos.h | 1 + gcc/config/nvptx/nvptx.cc | 22 ++++ gcc/config/rs6000/vsx.md | 9 +- gcc/fortran/resolve.cc | 13 +- gcc/gimplify.cc | 54 +++++++- .../c-c++-common/Wimplicit-fallthrough-39.c | 140 +++++++++++++++++++++ .../c-c++-common/Wmisleading-indentation-6.c | 11 ++ gcc/testsuite/gcc.target/aarch64/aapcs64/test_28.c | 28 +++++ gcc/testsuite/gcc.target/arm/aapcs/vfp26.c | 31 +++++ gcc/testsuite/gcc.target/nvptx/ptx31.c | 10 ++ gcc/testsuite/gcc.target/nvptx/ptx60.c | 10 ++ gcc/testsuite/gcc.target/nvptx/ptx63.c | 10 ++ gcc/testsuite/gcc.target/nvptx/ptx70.c | 10 ++ .../gfortran.dg/char_pointer_assign_7.f90 | 38 ++++++ gcc/tree.h | 6 + 18 files changed, 463 insertions(+), 20 deletions(-) create mode 100644 gcc/testsuite/c-c++-common/Wimplicit-fallthrough-39.c create mode 100644 gcc/testsuite/c-c++-common/Wmisleading-indentation-6.c create mode 100644 gcc/testsuite/gcc.target/aarch64/aapcs64/test_28.c create mode 100644 gcc/testsuite/gcc.target/arm/aapcs/vfp26.c create mode 100644 gcc/testsuite/gcc.target/nvptx/ptx31.c create mode 100644 gcc/testsuite/gcc.target/nvptx/ptx60.c create mode 100644 gcc/testsuite/gcc.target/nvptx/ptx63.c create mode 100644 gcc/testsuite/gcc.target/nvptx/ptx70.c create mode 100644 gcc/testsuite/gfortran.dg/char_pointer_assign_7.f90