This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_kernel/gnu-master-arm-mainline-allnoconfig in repository toolchain/ci/gcc.
from 50cd3e7f0dc Add 1bit bit-field testcases. adds 60808fc41ee compiler: split writing of equal and hash functions for types adds 488df70b6c9 compiler, runtime, reflect: generate hash functions onl [...] adds f96a9f9eff3 PR fortran/68020 * gfortran.dg/impled_shape_5.f90: Use dg [...] adds f192d7aeee7 Daily bump. adds d2bd68110f6 Fortran] PR 92994 – add more ASSOCIATE checks adds cac4114381d PR rtl-optimization/93088 * loop-iv.c (find_single_def_sr [...] adds af634ac1524 PR target/93110 * config/i386/i386.md (abs<mode>2): Use e [...] adds 84170bddbab PR target/93089 * config/i386/i386.opt (x_prefer_vector_w [...] adds e9477a28237 PR target/93089 * config/i386/i386-options.c (ix86_simd_c [...] adds 227bca9a7ed Fortran] OpenMP/OpenACC – fix more issues with OPTIONAL adds 6fae986744a Avoid segfault when dumping IPA-CP lattices for unoptimized [...] adds 9b51d80f860 libstdc++: Only use std::compare_three_way when concepts ar [...] new 302519cb48d gdbinit.in: call a function with "call", not "set"
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/ChangeLog | 42 ++ gcc/DATESTAMP | 2 +- gcc/config/i386/i386-expand.c | 4 +- gcc/config/i386/i386-options.c | 72 +- gcc/config/i386/i386-options.h | 3 +- gcc/config/i386/i386.md | 34 +- gcc/config/i386/i386.opt | 6 +- gcc/fortran/ChangeLog | 17 + gcc/fortran/primary.c | 14 +- gcc/fortran/resolve.c | 21 +- gcc/fortran/trans-openmp.c | 117 ++-- gcc/gdbinit.in | 24 +- gcc/go/gofrontend/MERGE | 2 +- gcc/go/gofrontend/expressions.cc | 6 +- gcc/go/gofrontend/gogo.cc | 62 +- gcc/go/gofrontend/gogo.h | 54 +- gcc/go/gofrontend/names.cc | 23 +- gcc/go/gofrontend/types.cc | 736 ++++++++++++--------- gcc/go/gofrontend/types.h | 62 +- gcc/ipa-cp.c | 5 +- gcc/loop-iv.c | 15 +- gcc/testsuite/ChangeLog | 27 + gcc/testsuite/gcc.dg/torture/pr93110.c | 9 + gcc/testsuite/gcc.target/i386/pr93088.c | 5 + gcc/testsuite/gcc.target/i386/pr93089-1.c | 24 + gcc/testsuite/gcc.target/i386/pr93089-2.c | 12 + gcc/testsuite/gcc.target/i386/pr93089-3.c | 12 + gcc/testsuite/gfortran.dg/associate_50.f90 | 4 +- gcc/testsuite/gfortran.dg/associate_51.f90 | 54 ++ gcc/testsuite/gfortran.dg/implied_shape_5.f90 | 2 +- libgo/go/internal/reflectlite/type.go | 40 +- libgo/go/reflect/type.go | 141 ++-- libgo/go/reflect/value.go | 3 + libgo/go/runtime/alg.go | 89 ++- libgo/go/runtime/map.go | 63 +- libgo/go/runtime/map_benchmark_test.go | 30 + libgo/go/runtime/map_fast32.go | 18 +- libgo/go/runtime/map_fast64.go | 18 +- libgo/go/runtime/map_faststr.go | 14 +- libgo/go/runtime/map_test.go | 61 ++ libgo/go/runtime/type.go | 38 +- libgo/runtime/go-unsafe-pointer.c | 24 +- libgomp/ChangeLog | 8 + libgomp/testsuite/libgomp.fortran/optional-map.f90 | 13 + .../libgomp.fortran/use_device_ptr-optional-2.f90 | 11 + .../libgomp.fortran/use_device_ptr-optional-3.f90 | 140 ++++ libstdc++-v3/ChangeLog | 5 + libstdc++-v3/include/bits/stl_algobase.h | 2 + 48 files changed, 1448 insertions(+), 740 deletions(-) create mode 100644 gcc/testsuite/gcc.dg/torture/pr93110.c create mode 100644 gcc/testsuite/gcc.target/i386/pr93088.c create mode 100644 gcc/testsuite/gcc.target/i386/pr93089-1.c create mode 100644 gcc/testsuite/gcc.target/i386/pr93089-2.c create mode 100644 gcc/testsuite/gcc.target/i386/pr93089-3.c create mode 100644 gcc/testsuite/gfortran.dg/associate_51.f90 create mode 100644 libgomp/testsuite/libgomp.fortran/use_device_ptr-optional-3.f90