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-aarch64 in repository toolchain/ci/gcc.
from c93e704b9e0 Fix hash_map::traverse overload adds 6e8a31275fd tree-optimization/103596 - fix missed propagation into switches adds 7ef68c37b3a x86: Check FUNCTION_DECL before calling cgraph_node::get adds 3a2257e6b3f c++: Fix for decltype and bit-fields [PR95009] adds 8e836af61b7 Fix --help -Q output adds f47662204de Fortran: add check for type of upper bound in case range new 652c2873620 Fortran: catch failed simplification of bad stride expression
The 1 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/config/i386/i386.c | 3 +- gcc/config/s390/s390.c | 2 +- gcc/cp/typeck.c | 14 ++++-- gcc/fortran/array.c | 9 ++-- gcc/fortran/match.c | 9 ++++ gcc/opt-functions.awk | 2 +- gcc/opts-common.c | 21 +++++--- gcc/opts.h | 4 +- gcc/testsuite/g++.dg/cpp0x/decltype-bitfield1.C | 65 +++++++++++++++++++++++++ gcc/testsuite/g++.dg/cpp0x/decltype-bitfield2.C | 18 +++++++ gcc/testsuite/gcc.dg/pr103594.c | 14 ++++++ gcc/testsuite/gcc.dg/torture/pr103596.c | 36 ++++++++++++++ gcc/testsuite/gfortran.dg/pr103588.f90 | 8 +++ gcc/testsuite/gfortran.dg/select_9.f90 | 10 ++++ gcc/tree-ssa-propagate.c | 62 +++++++++-------------- gcc/tree-ssa-propagate.h | 2 +- gcc/tree-ssa-sccvn.c | 2 +- 17 files changed, 221 insertions(+), 60 deletions(-) create mode 100644 gcc/testsuite/g++.dg/cpp0x/decltype-bitfield1.C create mode 100644 gcc/testsuite/g++.dg/cpp0x/decltype-bitfield2.C create mode 100644 gcc/testsuite/gcc.dg/pr103594.c create mode 100644 gcc/testsuite/gcc.dg/torture/pr103596.c create mode 100644 gcc/testsuite/gfortran.dg/pr103588.f90 create mode 100644 gcc/testsuite/gfortran.dg/select_9.f90