This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_gnu_native_build/master-arm in repository toolchain/ci/gcc.
from 7393fa8b1d2 libstdc++: Implement std::byteswap for C++23 adds d1471457fcd Improve -fprofile-report adds 2899d49e370 Compare guessed and feedback frequencies during profile fee [...] adds 32377c10193 Fix PR 62157: disclean in libsanitizer not working adds 2f0dd172bc6 Daily bump. adds 68332ab7ec5 Fix PR 19089: Environment variable TMP may yield gcc: abort adds 300dbea1269 rs6000/test: Add emulated gather test case adds 3e15df63ca4 libgcc: remove crt{begin,end}.o from powerpc-wrs-vxworks target adds 5e5f880d045 Restore can_be_invalidated_p semantics to before refactoring adds 85e91ad55a6 tree-optimization/103458 - avoid creating new loops in CD-DCE adds 9519b694afb Fix regression introduced by r12-5536. adds 11d0a2af339 Optimize _Float16 usage for non AVX512FP16. adds 16507dea753 Remove unreachable returns adds a3b31fe3692 Remove unreachable gcc_unreachable () at the end of functions adds a5d269f0c1c x86_64: Improved V1TImode rotations by non-constant amounts. adds 1420ff3efcf c++: redundant explicit 'this' capture before C++20 [PR100493] adds e2194a8b392 Fix RTL FE issue with premature return adds 85289ba36c2 rs6000: Add Power10 optimization for most _mm_movemask*
No new revisions were added by this update.
Summary of changes: gcc/ChangeLog | 27 +++ gcc/DATESTAMP | 2 +- gcc/c-family/c-format.c | 2 - gcc/c-family/c-opts.c | 5 +- gcc/c-family/c-pragma.c | 10 +- gcc/c/c-parser.c | 1 - gcc/c/c-typeck.c | 2 - gcc/ccmp.c | 2 - gcc/cfganal.c | 2 - gcc/cfghooks.c | 76 +++++-- gcc/cfghooks.h | 21 +- gcc/cfgrtl.c | 22 +- gcc/config/i386/i386-expand.c | 12 +- gcc/config/i386/i386.c | 7 +- gcc/config/i386/i386.md | 57 +++-- gcc/config/i386/sse.md | 12 +- gcc/config/rs6000/emmintrin.h | 8 + gcc/config/rs6000/xmmintrin.h | 4 + gcc/cp/parser.c | 8 +- gcc/d/ChangeLog | 4 + gcc/df-scan.c | 1 - gcc/dwarf2out.c | 3 - gcc/fixed-value.c | 1 - gcc/fold-const-call.c | 2 - gcc/gimple-fold.c | 1 - gcc/gimple-predicate-analysis.cc | 8 +- gcc/gimple-ssa-store-merging.c | 2 - gcc/gimple-ssa-strength-reduction.c | 1 - gcc/graphite-isl-ast-to-gimple.c | 4 - gcc/ipa-fnsummary.c | 1 - gcc/lto-streamer-in.c | 7 +- gcc/passes.c | 243 ++++++++++++++------- gcc/profile.c | 78 ++++++- gcc/read-rtl-function.c | 3 +- gcc/testsuite/g++.dg/cpp1z/lambda-this1.C | 8 +- gcc/testsuite/g++.dg/cpp1z/lambda-this8.C | 9 + gcc/testsuite/g++.dg/cpp2a/lambda-this3.C | 2 +- gcc/testsuite/gcc.dg/torture/pr103458.c | 21 ++ .../gcc.target/i386/avx512vl-vcvtps2ph-pr102811.c | 2 +- gcc/testsuite/gcc.target/i386/pr102811-2.c | 22 ++ gcc/testsuite/gcc.target/i386/sse2-v1ti-rotate.c | 11 + gcc/testsuite/gcc.target/powerpc/vect-gather-1.c | 20 ++ gcc/tree-cfg.c | 31 ++- gcc/tree-ssa-dce.c | 8 +- gcc/tree.h | 2 - gcc/vec.c | 10 +- libgcc/config.host | 1 - libgomp/oacc-plugin.c | 1 - libiberty/make-temp-file.c | 16 +- libsanitizer/ChangeLog | 14 ++ libsanitizer/Makefile.am | 3 + libsanitizer/Makefile.in | 4 +- libsanitizer/asan/Makefile.in | 1 + libsanitizer/hwasan/Makefile.in | 1 + libsanitizer/interception/Makefile.in | 1 + libsanitizer/libbacktrace/Makefile.in | 1 + libsanitizer/lsan/Makefile.in | 1 + libsanitizer/sanitizer_common/Makefile.in | 1 + libsanitizer/tsan/Makefile.in | 1 + libsanitizer/ubsan/Makefile.in | 1 + libstdc++-v3/ChangeLog | 7 + 61 files changed, 612 insertions(+), 227 deletions(-) create mode 100644 gcc/testsuite/g++.dg/cpp1z/lambda-this8.C create mode 100644 gcc/testsuite/gcc.dg/torture/pr103458.c create mode 100644 gcc/testsuite/gcc.target/i386/pr102811-2.c create mode 100644 gcc/testsuite/gcc.target/i386/sse2-v1ti-rotate.c create mode 100644 gcc/testsuite/gcc.target/powerpc/vect-gather-1.c