This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_gcc_bootstrap/master-arm-bootstrap_profiled_lto in repository toolchain/ci/gcc.
from 9d84ed6812d Daily bump. adds 83b43c74bbb rs6000: Support UN[GL][ET] in rs6000_maybe_emit_maxc_minc [ [...] adds e2a818641ba testsuite/105122 - adjust testcases after memcpy folding changes adds fc8d9e44970 tree-optimization/105142 - wrong code with maybe_fold_{and, [...] adds 6d4bbee4f59 Support pandn for V1TI mode (i.e. *andnotv1ti3). adds 86242eb1bd0 tree-optimization/105148 - fix IVOPTs recording uses adds f0d29224558 docs: Document new param x86-stlf-window-ninsns. adds d037d9ad323 vect: Fix mask handling for SLP gathers [PR103761] adds 71770a0ea92 gimple.cc: Adjust gimple_call_builtin_p and gimple_call_com [...] adds 44fe4940172 tree-optimization/105163 - abnormal SSA coalescing and reassoc adds 4be08315124 ipa/105166 - avoid modref queries with mismatching types adds e1a5e7562d5 tree-optimization/105173 - fix insertion logic in reassoc adds fd0024e48e9 c++: -Wshadow=compatible-local type vs var [PR100608] adds 5df29fe79df gimple.cc: Follow-up to adjust gimple_call_builtin_p and gi [...] adds eac5c12c183 mips: Fix C++14 vs. C++17 ABI incompatibility on mips64 adds cc76c502a76 c++: -Wunused-value and array init [PR104702] adds c65d15d4073 rs6000/testsuite: Skip pr105140.c adds 717b2d4191e --target-help: align with --help=target adds 6283d5ad477 sh: Fix up __attribute__((optimize ("Os"))) handling on SH [...] adds e58484a019c c++: make -Wctad-maybe-unsupported respect complain [PR105143] adds 9fd377a7473 c++: Fix up ICE when cplus_decl_attributes is called with e [...] adds 61bee6aed26 combine: Don't record for UNDO_MODE pointers into regno_reg [...] adds 790e9814454 jit: fix location of .png files for "make jit.pdf" [PR102824] adds 5e431ae4ccc Move 'libgomp/plugin/cuda/cuda.h' to 'include/cuda/cuda.h' adds 80eb8ec6727 Daily bump.
No new revisions were added by this update.
Summary of changes: gcc/ChangeLog | 121 +++++++++++++++++++ gcc/DATESTAMP | 2 +- gcc/combine.cc | 26 ++--- gcc/common.opt | 2 +- gcc/config/i386/sse.md | 13 ++- gcc/config/mips/mips.cc | 58 ++++++++- gcc/config/rs6000/rs6000.cc | 21 +++- gcc/config/sh/sh.opt | 2 +- gcc/cp/ChangeLog | 25 ++++ gcc/cp/decl2.cc | 6 +- gcc/cp/init.cc | 5 +- gcc/cp/name-lookup.cc | 4 + gcc/cp/pt.cc | 2 +- gcc/doc/invoke.texi | 8 ++ gcc/gcc.cc | 3 +- gcc/gimple-fold.cc | 130 ++++++++++++++------- gcc/gimple-fold.h | 6 +- gcc/gimple.cc | 4 + gcc/ipa-modref-tree.cc | 4 +- gcc/jit/ChangeLog | 12 ++ .../texinfo/{ => libgccjit-figures}/factorial.png | Bin .../texinfo/{ => libgccjit-figures}/factorial1.png | Bin .../{ => libgccjit-figures}/sum-of-squares.png | Bin .../{ => libgccjit-figures}/sum-of-squares1.png | Bin gcc/opts.cc | 2 +- gcc/testsuite/ChangeLog | 72 ++++++++++++ gcc/testsuite/g++.dg/cpp0x/pr104668.C | 13 +++ gcc/testsuite/g++.dg/cpp2a/nodiscard1.C | 13 +++ gcc/testsuite/g++.dg/torture/pr105142.C | 8 ++ .../g++.dg/warn/Wctad-maybe-unsupported4.C | 13 +++ .../g++.dg/warn/Wshadow-compatible-local-3.C | 10 ++ gcc/testsuite/g++.dg/warn/Wunused-19.C | 16 +++ gcc/testsuite/g++.target/mips/cxx17_empty_base.C | 20 ++++ gcc/testsuite/gcc.dg/memcpy-6.c | 3 +- gcc/testsuite/gcc.dg/pr105140.c | 1 + gcc/testsuite/gcc.dg/pr105173.c | 12 ++ gcc/testsuite/gcc.dg/strlenopt-73.c | 2 +- gcc/testsuite/gcc.dg/strlenopt-80.c | 3 +- gcc/testsuite/gcc.dg/torture/pr105148.c | 20 ++++ gcc/testsuite/gcc.dg/torture/pr105163.c | 17 +++ gcc/testsuite/gcc.dg/torture/pr105166.c | 9 ++ gcc/testsuite/gcc.dg/vect/pr103761.c | 13 +++ gcc/testsuite/gcc.target/aarch64/sve/pr103761.c | 13 +++ gcc/testsuite/gcc.target/i386/sse2-v1ti-andnot.c | 11 ++ gcc/tree-ssa-ifcombine.cc | 3 +- gcc/tree-ssa-loop-ivopts.cc | 6 +- gcc/tree-ssa-reassoc.cc | 66 +++++++---- gcc/tree-ssa-strlen.cc | 6 - gcc/tree-vect-stmts.cc | 37 +++--- include/ChangeLog | 4 + {libgomp/plugin => include}/cuda/cuda.h | 7 +- libgomp/ChangeLog | 9 ++ libgomp/configure | 1 - libgomp/plugin/configfrag.ac | 1 - libgomp/plugin/plugin-nvptx.c | 6 +- 55 files changed, 734 insertions(+), 137 deletions(-) rename gcc/jit/docs/_build/texinfo/{ => libgccjit-figures}/factorial.png (100%) rename gcc/jit/docs/_build/texinfo/{ => libgccjit-figures}/factorial1.png (100%) rename gcc/jit/docs/_build/texinfo/{ => libgccjit-figures}/sum-of-squares.png (100%) rename gcc/jit/docs/_build/texinfo/{ => libgccjit-figures}/sum-of-squares1.png (100%) create mode 100644 gcc/testsuite/g++.dg/cpp0x/pr104668.C create mode 100644 gcc/testsuite/g++.dg/cpp2a/nodiscard1.C create mode 100644 gcc/testsuite/g++.dg/torture/pr105142.C create mode 100644 gcc/testsuite/g++.dg/warn/Wctad-maybe-unsupported4.C create mode 100644 gcc/testsuite/g++.dg/warn/Wshadow-compatible-local-3.C create mode 100644 gcc/testsuite/g++.dg/warn/Wunused-19.C create mode 100644 gcc/testsuite/g++.target/mips/cxx17_empty_base.C create mode 100644 gcc/testsuite/gcc.dg/pr105173.c create mode 100644 gcc/testsuite/gcc.dg/torture/pr105148.c create mode 100644 gcc/testsuite/gcc.dg/torture/pr105163.c create mode 100644 gcc/testsuite/gcc.dg/torture/pr105166.c create mode 100644 gcc/testsuite/gcc.dg/vect/pr103761.c create mode 100644 gcc/testsuite/gcc.target/aarch64/sve/pr103761.c create mode 100644 gcc/testsuite/gcc.target/i386/sse2-v1ti-andnot.c rename {libgomp/plugin => include}/cuda/cuda.h (97%)