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-release-arm-lts-defconfig in repository toolchain/ci/gcc.
from 57f51070d0e Daily bump. adds 1124c88978e Daily bump. adds f25b0b91d13 Daily bump. adds 4ed850a568e target/105459 - allow delayed target option node fixup adds 92aa9490315 tree-optimization/105946 - avoid accessing excess args from [...] adds 1fe7321a6ce middle-end/105965 - add missing v_c_e <{ el }> simplification adds 4f34a9e8d5f tree-optimization/105969 - FPE with array diagnostics adds 8dd1c404ec7 tree-optimization/105971 - less surprising refs_may_alias_p_2 adds 71c6baa9abc middle-end/106027 - fix types in needle folding adds 854ab8be5d9 tree-optimization/106112 - fix CSE from wider operation adds ec9287ba971 tree-optimization/106131 - wrong code with FRE rewriting adds 1a7200da715 middle-end/106331 - fix mem attributes for string op arguments adds deafa40eb57 c++: fix SIGFPE with -Wclass-memaccess [PR105634] adds 94d44a83ff9 Daily bump. adds 16155316ea6 Fortran: fix parsing of omp task affinity iterator clause [ [...] adds 7f596e4314c Daily bump. adds ade3197134c libstdc++: Fix lifetime bugs for non-TLS eh_globals [PR105880] new f3ff78e3db0 libstdc++: Fix experimental::filesystem::status on Windows [...] new 0bb30f94ace libstdc++: Make __from_chars_alnum_to_val conversion explicit new 145ef5e2be2 libstdc++: Simplify test by not using std::log2 new c19fe8ad4e2 libstdc++: testsuite: Guard use of C99 std::log2 new 545e8fb1418 libstdc++: Fix comment typos new 86fd1b0b4aa libstdc++: Make headers include their prerequisites new 6a7ed225223 libstdc++: Fix minor bugs in std::common_iterator new 06443fa2d46 libstdc++: Fix std::common_iterator assignment [PR100823] new f29c845782c libsanitizer: cherry-pick 9cf13067cb5088626ba7 from upstream new 4f15d223460 libgo: don't include <linux/fs.h> when building gen-sysinfo.go
The 10 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 | 87 +++++++++++++ gcc/DATESTAMP | 2 +- gcc/builtins.cc | 13 +- gcc/config/i386/i386-options.cc | 32 ++--- gcc/cp/ChangeLog | 5 + gcc/cp/call.cc | 2 + gcc/fold-const.cc | 10 +- gcc/fortran/ChangeLog | 9 ++ gcc/fortran/openmp.cc | 1 - gcc/gimple-ssa-sprintf.cc | 2 +- gcc/match.pd | 17 ++- gcc/testsuite/ChangeLog | 77 ++++++++++++ gcc/testsuite/g++.dg/torture/pr106131.C | 34 +++++ gcc/testsuite/g++.dg/warn/Wclass-memaccess-7.C | 13 ++ gcc/testsuite/gcc.dg/lto/pr105459_0.c | 35 ++++++ gcc/testsuite/gcc.dg/pr105969.c | 13 ++ gcc/testsuite/gcc.dg/pr106027.c | 8 ++ gcc/testsuite/gcc.dg/torture/pr106112.c | 16 +++ gcc/testsuite/gcc.dg/torture/pr106971.c | 12 ++ gcc/testsuite/gcc.target/i386/pr105965.c | 12 ++ .../gfortran.dg/gomp/affinity-clause-7.f90 | 19 +++ gcc/testsuite/gfortran.dg/pr106331.f90 | 7 ++ gcc/tree-ssa-alias.cc | 18 +-- gcc/tree-ssa-sccvn.cc | 18 ++- gcc/tree-ssa-uninit.cc | 3 + libgo/sysinfo.c | 3 - .../sanitizer_platform_limits_posix.cpp | 10 +- libstdc++-v3/include/bits/hashtable.h | 2 + libstdc++-v3/include/bits/hashtable_policy.h | 2 + libstdc++-v3/include/bits/stl_heap.h | 1 + libstdc++-v3/include/bits/stl_iterator.h | 137 ++++++++++++++------- .../include/bits/stl_iterator_base_funcs.h | 1 + libstdc++-v3/include/bits/utility.h | 3 +- libstdc++-v3/include/std/charconv | 2 +- libstdc++-v3/libsupc++/eh_globals.cc | 51 +++++--- libstdc++-v3/src/filesystem/ops.cc | 56 ++++++++- libstdc++-v3/testsuite/20_util/from_chars/4.cc | 2 + .../testsuite/24_iterators/common_iterator/1.cc | 23 +++- .../24_iterators/common_iterator/100823.cc | 43 +++++++ .../26_numerics/random/random_device/entropy.cc | 3 +- .../filesystem/operations/temp_directory_path.cc | 6 +- 41 files changed, 689 insertions(+), 121 deletions(-) create mode 100644 gcc/testsuite/g++.dg/torture/pr106131.C create mode 100644 gcc/testsuite/g++.dg/warn/Wclass-memaccess-7.C create mode 100644 gcc/testsuite/gcc.dg/lto/pr105459_0.c create mode 100644 gcc/testsuite/gcc.dg/pr105969.c create mode 100644 gcc/testsuite/gcc.dg/pr106027.c create mode 100644 gcc/testsuite/gcc.dg/torture/pr106112.c create mode 100644 gcc/testsuite/gcc.dg/torture/pr106971.c create mode 100644 gcc/testsuite/gcc.target/i386/pr105965.c create mode 100644 gcc/testsuite/gfortran.dg/gomp/affinity-clause-7.f90 create mode 100644 gcc/testsuite/gfortran.dg/pr106331.f90 create mode 100644 libstdc++-v3/testsuite/24_iterators/common_iterator/100823.cc