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-aarch64 in repository toolchain/ci/gcc.
from db3d7270b42 openmp: Fix up declare target handling for vars with DECL_L [...] adds fcc13d6fc31 libstdc++: Implement ostream insertion for chrono::duration adds 82e3a826871 libstdc++: Restore debug checks in uniform container erasur [...] adds 00f34291175 Come up with OPTION_SET_P macro. adds 816da497dfb opts: include missing header files. adds 0ee3dc60523 loop: Fix profile updates after unrolling [PR102385] adds a23653c6a68 libsanitizer: Add AM_CCASFLAGS to Makefile.am adds a1fc4075fcd libstdc++: Reduce header dependencies of <algorithm> in C++ [...] adds 4d9070315aa Implement irange::debug() adds 946486ab4f8 Grow non_null_ref bitmap when num_ssa_names increases. adds e6f6972b5f4 libstdc++: Detect miscompilation of src/c++11/limits.cc
No new revisions were added by this update.
Summary of changes: gcc/ada/gcc-interface/misc.c | 10 +-- gcc/c-family/c-opts.c | 6 +- gcc/config/alpha/alpha.c | 2 +- gcc/config/arc/arc.c | 4 +- gcc/config/arm/arm.c | 9 +- gcc/config/bfin/bfin.c | 5 +- gcc/config/c6x/c6x.c | 3 +- gcc/config/csky/csky.c | 7 +- gcc/config/darwin.c | 31 +++---- gcc/config/frv/frv.c | 5 +- gcc/config/i386/djgpp.h | 2 +- gcc/config/i386/i386.c | 6 +- gcc/config/ia64/ia64.c | 6 +- gcc/config/m32c/m32c.c | 3 +- gcc/config/m32r/m32r.c | 3 +- gcc/config/m68k/m68k.c | 6 +- gcc/config/microblaze/microblaze.c | 3 +- gcc/config/mips/mips.c | 9 +- gcc/config/nios2/nios2.c | 3 +- gcc/config/nvptx/nvptx.c | 4 +- gcc/config/pa/pa.c | 4 +- gcc/config/riscv/riscv.c | 11 +-- gcc/config/rs6000/aix71.h | 6 +- gcc/config/rs6000/aix72.h | 6 +- gcc/config/rs6000/aix73.h | 6 +- gcc/config/rs6000/rs6000.c | 70 +++++++-------- gcc/config/rs6000/rtems.h | 4 +- gcc/config/rs6000/sysv4.h | 8 +- gcc/config/rs6000/vxworks.h | 2 +- gcc/config/s390/s390.c | 4 +- gcc/config/sh/linux.h | 4 +- gcc/config/sh/netbsd-elf.h | 2 +- gcc/config/sh/sh.c | 12 +-- gcc/config/sol2.c | 3 +- gcc/config/sparc/sparc.c | 12 +-- gcc/config/tilegx/tilegx.c | 3 +- gcc/config/visium/visium.c | 2 +- gcc/config/vxworks.c | 5 +- gcc/cp/constexpr.c | 3 +- gcc/cp/decl.c | 7 +- gcc/d/d-lang.cc | 10 +-- gcc/fortran/options.c | 6 +- gcc/gimple-loop-jam.c | 3 +- gcc/gimple-range-cache.cc | 3 + gcc/lto-opts.c | 8 +- gcc/objc/objc-next-runtime-abi-01.c | 3 +- gcc/objc/objc-next-runtime-abi-02.c | 5 +- gcc/omp-expand.c | 3 +- gcc/omp-general.c | 3 +- gcc/omp-offload.c | 3 +- gcc/opts.h | 4 + gcc/predict.c | 37 ++++++++ gcc/predict.h | 1 + gcc/targhooks.c | 4 +- gcc/testsuite/gcc.dg/pr102385.c | 14 +++ gcc/toplev.c | 2 +- gcc/tree-predcom.c | 6 +- gcc/tree-sra.c | 6 +- gcc/tree-ssa-loop-manip.c | 111 ++++++++++++++++++------ gcc/tree-ssa-loop-manip.h | 5 +- gcc/tree-ssa-loop-prefetch.c | 3 +- gcc/value-range.cc | 7 ++ gcc/value-range.h | 1 + libsanitizer/asan/Makefile.am | 1 + libsanitizer/asan/Makefile.in | 1 + libsanitizer/hwasan/Makefile.am | 1 + libsanitizer/hwasan/Makefile.in | 1 + libsanitizer/interception/Makefile.am | 1 + libsanitizer/interception/Makefile.in | 1 + libsanitizer/lsan/Makefile.am | 1 + libsanitizer/lsan/Makefile.in | 1 + libsanitizer/tsan/Makefile.am | 1 + libsanitizer/tsan/Makefile.in | 1 + libsanitizer/ubsan/Makefile.am | 1 + libsanitizer/ubsan/Makefile.in | 1 + libstdc++-v3/include/bits/ranges_algobase.h | 4 +- libstdc++-v3/include/experimental/deque | 8 +- libstdc++-v3/include/experimental/map | 10 +-- libstdc++-v3/include/experimental/set | 10 +-- libstdc++-v3/include/experimental/unordered_map | 12 +-- libstdc++-v3/include/experimental/unordered_set | 11 +-- libstdc++-v3/include/experimental/vector | 8 +- libstdc++-v3/include/std/chrono | 99 +++++++++++++++++++++ libstdc++-v3/include/std/deque | 22 +++-- libstdc++-v3/include/std/map | 10 +-- libstdc++-v3/include/std/set | 10 +-- libstdc++-v3/include/std/unordered_map | 12 +-- libstdc++-v3/include/std/unordered_set | 11 +-- libstdc++-v3/include/std/vector | 24 +++-- libstdc++-v3/src/c++11/limits.cc | 4 + libstdc++-v3/testsuite/20_util/duration/io.cc | 54 ++++++++++++ 91 files changed, 562 insertions(+), 308 deletions(-) create mode 100644 gcc/testsuite/gcc.dg/pr102385.c create mode 100644 libstdc++-v3/testsuite/20_util/duration/io.cc