This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_gcc_check/master-arm in repository toolchain/ci/gcc.
from df8690f2837 ipa: Fix segfault when remapping debug_binds with expressio [...] adds 32ba7860cca arm: add armv9-a architecture to -march adds c71cb26a9e8 Get rid of infinite recursion for 'typedef' used with GTY-m [...] adds 47c2cf3ac68 Remove TDF_THREADING flag in favor of param. adds 2fc9b4d7b0c Cleanup path solver dumps. adds 088199e5d0f Generalize 'gcc/input.h:struct location_hash' adds 0dc0947d4b6 Define m_rtx_reuse_manager only if not GENERATOR_FILE. adds a19f09cb03d c++: unexpanded pack in var tmpl partial spec [PR100652] adds a22d910305a c++: bogus error w/ tentative type parse of concept-id [PR98394] adds 0318df0ae63 c++: Fix ICE on complex constant with -frounding-math [PR103114] adds 8d2d0a6c439 libstdc++: Make spurious std::random_device FAIL less likely adds 3439657b028 libstdc++: Support getentropy and arc4random in std::random_device adds d9ebf0ce084 libstdc++: Do not use 64-bit DARN on 32-bit powerpc [PR103146] adds 95e8fcd3d50 libstdc++: Make test print which random_device tokens work adds af33850a4d1 Document --param=threader-debug. new 7798ae1a150 Merge IPA solution with local one in ipa-modref new 00c9ce13a64 Restore 'GOMP_OPENACC_DIM' environment variable parsing new abe562bb014 [PR/target 102957] Allow Z*-ext extension with only 2 char. new 78dd0de956c ipa: Fix typo in ipa-modref.c new a648acc3b4c c++: Skip unnamed bit-fields more new 5aa7a09369a rs6000: Debug support for builtins changes
The 6 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/common/config/riscv/riscv-common.c | 1 - gcc/config/arm/arm-cpus.in | 19 ++ gcc/config/arm/arm-tables.opt | 7 +- gcc/config/arm/arm.h | 3 +- gcc/config/arm/t-aprofile | 25 ++- gcc/config/arm/t-arm-elf | 9 + gcc/config/arm/t-multilib | 12 ++ gcc/config/rs6000/rs6000-call.c | 195 ++++++++++++++++++++- gcc/cp/class.c | 7 +- gcc/cp/method.c | 4 +- gcc/cp/parser.c | 16 +- gcc/cp/pt.c | 17 +- gcc/diagnostic-spec.h | 6 +- gcc/doc/gty.texi | 8 + gcc/doc/invoke.texi | 4 + gcc/dumpfile.c | 1 - gcc/dumpfile.h | 23 ++- gcc/flag-types.h | 7 + gcc/gimple-range-path.cc | 13 +- gcc/input.h | 24 ++- gcc/ipa-modref.c | 87 +++++++-- gcc/params.opt | 13 ++ gcc/print-rtl.c | 8 +- gcc/print-rtl.h | 2 + gcc/testsuite/g++.dg/cpp1y/var-templ69.C | 5 + gcc/testsuite/g++.dg/cpp2a/concepts-pr85846.C | 12 ++ gcc/testsuite/g++.dg/cpp2a/concepts-pr98394.C | 14 ++ gcc/testsuite/g++.dg/ext/complex10.C | 5 + gcc/testsuite/g++.dg/init/bitfield6.C | 20 +++ gcc/testsuite/gcc.target/arm/multilib.exp | 8 + gcc/testsuite/gcc.target/riscv/pr102957.c | 5 + gcc/testsuite/lib/target-supports.exp | 3 +- gcc/value-relation.cc | 6 +- libgomp/env.c | 2 +- libstdc++-v3/acinclude.m4 | 46 +++++ libstdc++-v3/config.h.in | 6 + libstdc++-v3/configure | 103 +++++++++++ libstdc++-v3/configure.ac | 4 + libstdc++-v3/src/c++11/random.cc | 71 +++++++- .../26_numerics/random/random_device/cons/token.cc | 10 +- .../26_numerics/random/random_device/entropy.cc | 7 + 41 files changed, 753 insertions(+), 85 deletions(-) create mode 100644 gcc/testsuite/g++.dg/cpp1y/var-templ69.C create mode 100644 gcc/testsuite/g++.dg/cpp2a/concepts-pr85846.C create mode 100644 gcc/testsuite/g++.dg/cpp2a/concepts-pr98394.C create mode 100644 gcc/testsuite/g++.dg/ext/complex10.C create mode 100644 gcc/testsuite/g++.dg/init/bitfield6.C create mode 100644 gcc/testsuite/gcc.target/riscv/pr102957.c