This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_gcc_bootstrap/master-aarch64-bootstrap_lto in repository toolchain/ci/gcc.
from bd0a61befcb bpf: mark/remove unused arguments and remove an unused function adds 7754fddd015 MAINTAINERS: Add myself to write after approval and DCO sections. adds 325c6163a33 rs6000: Fix errant "vector" instead of "__vector" adds c9543403c19 analyzer: fix equivalence class state purging [PR103533] adds 3a580f967e5 Daily bump. adds 3d9e6767939 Improve AutoFDO count propagation algorithm adds 30a08286e67 MIPS: R6: load/store can process unaligned address adds ba6bb287f03 Revert "libstdc++: Fix ctype changed after newlib update." adds 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 adds 652c2873620 Fortran: catch failed simplification of bad stride expression adds 4394fd67264 testsuite: Fix check_effective_target_rop_ok [PR103556, PR103586] new cf2cd61dce4 c++: Fix decltype-bitfield1.C on i?86
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: ChangeLog | 4 + MAINTAINERS | 2 + contrib/ChangeLog | 4 + gcc/ChangeLog | 76 ++++++++++++ gcc/DATESTAMP | 2 +- gcc/analyzer/ChangeLog | 12 ++ gcc/analyzer/constraint-manager.cc | 149 +++++++++++++++++++++++- gcc/analyzer/constraint-manager.h | 2 + gcc/auto-profile.c | 20 +++- gcc/config/i386/i386.c | 3 +- gcc/config/mips/mips.h | 6 +- gcc/config/mips/mips.md | 10 ++ gcc/config/mips/mips.opt | 4 + gcc/config/rs6000/xmmintrin.h | 2 +- gcc/config/s390/s390.c | 2 +- gcc/cp/typeck.c | 14 ++- gcc/doc/invoke.texi | 10 ++ gcc/fortran/array.c | 9 +- gcc/fortran/match.c | 9 ++ gcc/hash-map.h | 6 +- gcc/opt-functions.awk | 2 +- gcc/opts-common.c | 21 ++-- gcc/opts.h | 4 +- gcc/predict.c | 2 +- gcc/testsuite/ChangeLog | 20 ++++ 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/gcc.dg/tree-prof/init-array.c | 43 +++++++ gcc/testsuite/gcc.target/mips/mips.exp | 1 + gcc/testsuite/gcc.target/mips/unaligned-2.c | 53 +++++++++ gcc/testsuite/gcc.target/mips/unaligned-3.c | 53 +++++++++ gcc/testsuite/gfortran.dg/pr103588.f90 | 8 ++ gcc/testsuite/gfortran.dg/select_9.f90 | 10 ++ gcc/testsuite/lib/target-supports.exp | 3 +- gcc/tree-ssa-propagate.c | 62 ++++------ gcc/tree-ssa-propagate.h | 2 +- gcc/tree-ssa-sccvn.c | 2 +- libgcc/ChangeLog | 7 ++ libsanitizer/ChangeLog | 11 ++ libstdc++-v3/config/os/newlib/ctype_base.h | 19 +-- 42 files changed, 712 insertions(+), 90 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/gcc.dg/tree-prof/init-array.c create mode 100644 gcc/testsuite/gcc.target/mips/unaligned-2.c create mode 100644 gcc/testsuite/gcc.target/mips/unaligned-3.c create mode 100644 gcc/testsuite/gfortran.dg/pr103588.f90 create mode 100644 gcc/testsuite/gfortran.dg/select_9.f90