This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_cross/gnu-master-arm-build_cross in repository toolchain/ci/gcc.
from 66a03207930 c++: Fix typo in NON_UNION_CLASS_TYPE_P. adds 9af65c2b904 libstdc++: Reduce uses of std::numeric_limits adds 7e9282ae62f Daily bump. adds 7164745e1c2 gofrontend: correct file reading logic in Stream_from_file adds d2364fb436f IBM Z: Doc: Add z15/arch13 to the list of -march/-mtune options adds 3e8fb15a8cf arm: Add +nomve and +nomve.fp options to -mcpu=cortex-m55 adds 44e20dce597 openmp: Fix ICE in omp_discover_declare_target_tgt_fn_r adds 952adf02188 Fix off-by-one storage problem in irange_allocator. adds bf510679bb3 divmod: Match and expand DIVMOD even in some cases of const [...]
No new revisions were added by this update.
Summary of changes: gcc/ChangeLog | 51 ++++++++++++++++ gcc/DATESTAMP | 2 +- gcc/c-family/ChangeLog | 11 ++++ gcc/config/arm/arm-cpus.in | 26 ++++++--- gcc/config/arm/arm.c | 14 +++++ gcc/config/arm/parsecpu.awk | 51 ++++++++++++++++ gcc/cp/ChangeLog | 17 ++++++ gcc/doc/invoke.texi | 2 +- gcc/go/gofrontend/MERGE | 2 +- gcc/go/gofrontend/import.cc | 8 +-- gcc/internal-fn.c | 67 +++++++++++++++++++++- gcc/omp-offload.c | 3 +- gcc/testsuite/ChangeLog | 4 ++ gcc/testsuite/c-c++-common/gomp/pr97289.c | 14 +++++ .../gcc.target/arm/cortex-m55-nodsp-flag-hard.c | 15 +++++ .../gcc.target/arm/cortex-m55-nodsp-flag-softfp.c | 15 +++++ .../arm/cortex-m55-nodsp-nofp-flag-softfp.c | 15 +++++ .../gcc.target/arm/cortex-m55-nofp-flag-hard.c | 15 +++++ .../gcc.target/arm/cortex-m55-nofp-flag-softfp.c | 15 +++++ .../arm/cortex-m55-nofp-nomve-flag-softfp.c | 15 +++++ .../gcc.target/arm/cortex-m55-nomve-flag-hard.c | 15 +++++ .../gcc.target/arm/cortex-m55-nomve-flag-softfp.c | 15 +++++ .../gcc.target/arm/cortex-m55-nomve.fp-flag-hard.c | 15 +++++ .../arm/cortex-m55-nomve.fp-flag-softfp.c | 15 +++++ gcc/testsuite/gcc.target/arm/multilib.exp | 16 ++++++ gcc/testsuite/gcc.target/i386/pr97282.c | 25 ++++++++ gcc/tree-ssa-math-opts.c | 17 +++++- gcc/value-range.h | 2 +- libgomp/ChangeLog | 5 ++ libstdc++-v3/ChangeLog | 57 ++++++++++++++++++ libstdc++-v3/include/bits/hashtable_policy.h | 7 ++- libstdc++-v3/include/bits/regex.h | 9 +-- libstdc++-v3/include/bits/uniform_int_dist.h | 7 ++- libstdc++-v3/include/std/regex | 1 + libstdc++-v3/include/std/string_view | 9 +-- libstdc++-v3/src/c++11/hashtable_c++0x.cc | 2 +- libstdc++-v3/testsuite/std/ranges/iota/96042.cc | 1 + .../testsuite/std/ranges/iota/difference_type.cc | 1 + .../testsuite/std/ranges/subrange/96042.cc | 1 + 39 files changed, 547 insertions(+), 35 deletions(-) create mode 100644 gcc/testsuite/c-c++-common/gomp/pr97289.c create mode 100644 gcc/testsuite/gcc.target/arm/cortex-m55-nodsp-flag-hard.c create mode 100644 gcc/testsuite/gcc.target/arm/cortex-m55-nodsp-flag-softfp.c create mode 100644 gcc/testsuite/gcc.target/arm/cortex-m55-nodsp-nofp-flag-softfp.c create mode 100644 gcc/testsuite/gcc.target/arm/cortex-m55-nofp-flag-hard.c create mode 100644 gcc/testsuite/gcc.target/arm/cortex-m55-nofp-flag-softfp.c create mode 100644 gcc/testsuite/gcc.target/arm/cortex-m55-nofp-nomve-flag-softfp.c create mode 100644 gcc/testsuite/gcc.target/arm/cortex-m55-nomve-flag-hard.c create mode 100644 gcc/testsuite/gcc.target/arm/cortex-m55-nomve-flag-softfp.c create mode 100644 gcc/testsuite/gcc.target/arm/cortex-m55-nomve.fp-flag-hard.c create mode 100644 gcc/testsuite/gcc.target/arm/cortex-m55-nomve.fp-flag-softfp.c create mode 100644 gcc/testsuite/gcc.target/i386/pr97282.c