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_build/master-aarch64 in repository toolchain/ci/gcc.
from f49e3d28be4 libgcc: use .init_stack for constructors if available adds 90285ce98f3 Tweak new test cases for -march=cascadelake strangeness. adds 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. new 0ee3dc60523 loop: Fix profile updates after unrolling [PR102385]
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/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/cp/parser.c | 132 ++++++++++++--------- gcc/d/d-lang.cc | 10 +- gcc/fortran/options.c | 6 +- gcc/gimple-loop-jam.c | 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/c-c++-common/gomp/pr102640.c | 44 +++++++ gcc/testsuite/gcc.dg/pr102385.c | 14 +++ gcc/testsuite/gcc.target/i386/sse2-mmx-paddsb-2.c | 2 +- gcc/testsuite/gcc.target/i386/sse2-mmx-paddusb-2.c | 2 +- gcc/testsuite/gcc.target/i386/sse2-mmx-psubsb-2.c | 2 +- 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 +- 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/testsuite/20_util/duration/io.cc | 54 +++++++++ 79 files changed, 652 insertions(+), 369 deletions(-) create mode 100644 gcc/testsuite/c-c++-common/gomp/pr102640.c create mode 100644 gcc/testsuite/gcc.dg/pr102385.c create mode 100644 libstdc++-v3/testsuite/20_util/duration/io.cc