This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_gnu_native_check_gcc/master-aarch64 in repository toolchain/ci/gcc.
from 2a20407bacb libsanitizer: Update LOCAL_PATCHES adds ed4a5f571bd Add BB option for outgoing_edge_range_p and may_reocmpute_p. adds 14dc5b71d7e Use dominators to reduce cache-flling. adds d27b7e69872 ranger: Optimise irange_union adds 63c59f054a5 ranger: Add shortcuts for single-successor blocks adds 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 new f47662204de Fortran: add check for type of upper bound in case range
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/bpf/bpf.c | 25 +--- 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/match.c | 9 ++ gcc/gimple-range-cache.cc | 73 ++++++++++++ gcc/gimple-range-cache.h | 1 + gcc/gimple-range-edge.cc | 3 + gcc/gimple-range-gori.cc | 77 +++++++----- gcc/gimple-range-gori.h | 6 +- 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/select_9.f90 | 10 ++ gcc/tree-ssa-propagate.c | 62 ++++------ gcc/tree-ssa-propagate.h | 2 +- gcc/tree-ssa-sccvn.c | 2 +- gcc/value-range.cc | 46 +++----- libgcc/ChangeLog | 7 ++ libsanitizer/ChangeLog | 11 ++ libstdc++-v3/config/os/newlib/ctype_base.h | 19 +-- 46 files changed, 848 insertions(+), 165 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/select_9.f90