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-aarch64-bootstrap_profiled_lto_lean in repository toolchain/ci/gcc.
from 79fb1124c8c Daily bump. adds 2180cdd8a0e xtensa: Correct the relative RTX cost that corresponds to t [...] adds 40f6e591228 PR c/106264: Silence warnings from __builtin_modf et al. adds 0f129766fdb lto/106334 - relax assert during WPA tree merging adds e4ff11a8f2e middle-end/106331 - fix mem attributes for string op arguments adds f082bc79c10 RTEMS: Remove HAVE_POLL for libstdc++ adds 4c323130257 forwprop: Use lhs type instead of arg0 in folding VEC_PERM_EXPR. adds edf0c132b19 Remote trailing : for subheading. adds 434d521d118 analyzer: log out-edge description in exploded_graph::process_node adds 2c044ff123e analyzer: fix taint handling of switch statements [PR106321] adds 20ab3972240 libstdc++: Make __from_chars_alnum_to_val conversion explicit adds 4a8aab9a235 .gitignore: do not ignore config.h adds 465802c0d40 c++: Enable __has_builtin for new reference binding built-ins adds 76c3f0dc2f8 tree-ssa-sink: do not sink to in front of setjmp adds 26cea5f108e tree-cfg: do not duplicate returns_twice calls adds 7a158a5776f tree-cfg: check placement of returns_twice calls adds 68f37670eff c++: shortcut bad reference binding [PR94894] adds c66dc023847 libstdc++: Complete __gnu_debug::string Standard conformity adds f838d15641d Fortran: error recovery on invalid array reference of non-a [...] adds b0cc57cd76f Remove recursion from range_from_dom. adds dbb093f4f15 Resolve complicated join nodes in range_from_dom. adds 7c0c10db24f Daily bump. adds 68871a008e6 analyzer: don't track string literals in the store [PR106359]
No new revisions were added by this update.
Summary of changes: .gitignore | 3 +- ChangeLog | 4 + gcc/ChangeLog | 66 +++++++++++++++ gcc/DATESTAMP | 2 +- gcc/analyzer/ChangeLog | 23 +++++ gcc/analyzer/constraint-manager.h | 3 + gcc/analyzer/engine.cc | 34 +++++++- gcc/analyzer/exploded-graph.h | 3 + gcc/analyzer/region-model.cc | 2 + gcc/analyzer/region-model.h | 17 ++++ gcc/analyzer/region.h | 4 + gcc/analyzer/sm-taint.cc | 58 +++++++++++++ gcc/analyzer/sm.h | 9 ++ gcc/analyzer/store.cc | 7 ++ gcc/analyzer/store.h | 4 +- gcc/builtins.cc | 32 ++++--- gcc/cfghooks.cc | 13 ++- gcc/config/xtensa/xtensa.cc | 2 +- gcc/cp/ChangeLog | 23 +++++ gcc/cp/call.cc | 92 +++++++++++++------- gcc/cp/cp-objcp-common.cc | 2 + gcc/cp/cp-tree.h | 5 ++ gcc/doc/extend.texi | 4 +- gcc/dwarf2out.cc | 6 +- gcc/fortran/ChangeLog | 9 ++ gcc/fortran/resolve.cc | 13 ++- gcc/gimple-range-cache.cc | 98 +++++++++++++++------- gcc/gimple-range-cache.h | 1 + gcc/testsuite/ChangeLog | 35 ++++++++ gcc/testsuite/g++.dg/conversion/ref8.C | 22 +++++ gcc/testsuite/g++.dg/conversion/ref9.C | 21 +++++ .../gcc.dg/analyzer/torture/taint-read-index-2.c | 85 +++++++++++++++++++ gcc/testsuite/gcc.dg/pr106264.c | 27 ++++++ gcc/testsuite/gcc.dg/setjmp-7.c | 13 +++ gcc/testsuite/gfortran.dg/associate_54.f90 | 3 +- gcc/testsuite/gfortran.dg/associate_59.f90 | 9 ++ gcc/testsuite/gfortran.dg/pr106331.f90 | 7 ++ gcc/tree-cfg.cc | 40 ++++++++- gcc/tree-ssa-forwprop.cc | 2 +- gcc/tree-ssa-sink.cc | 6 ++ libstdc++-v3/ChangeLog | 49 +++++++++++ libstdc++-v3/configure | 2 - libstdc++-v3/configure.ac | 1 - libstdc++-v3/include/debug/debug.h | 5 +- libstdc++-v3/include/debug/macros.h | 4 - libstdc++-v3/include/debug/string | 95 ++++++++++----------- libstdc++-v3/include/std/charconv | 2 +- libstdc++-v3/include/std/type_traits | 4 + .../find/char/4.cc => debug/find1_neg.cc} | 26 +++--- .../find/char/4.cc => debug/find2_neg.cc} | 26 +++--- .../basic_string/operations/find/char/1.cc | 18 ++-- .../basic_string/operations/find/char/2.cc | 16 ++-- .../basic_string/operations/find/char/3.cc | 14 ++-- .../basic_string/operations/find/char/4.cc | 8 +- .../basic_string/operations/find/char/5.cc | 4 +- .../basic_string/operations/find/char/6.cc | 4 +- .../basic_string/operations/find/wchar_t/1.cc | 18 ++-- .../basic_string/operations/find/wchar_t/2.cc | 16 ++-- .../basic_string/operations/find/wchar_t/3.cc | 14 ++-- .../basic_string/operations/find/wchar_t/4.cc | 8 +- .../basic_string/operations/find/wchar_t/5.cc | 4 +- .../basic_string/operations/find/wchar_t/6.cc | 4 +- libstdc++-v3/testsuite/util/testsuite_string.h | 20 +++++ 63 files changed, 917 insertions(+), 254 deletions(-) create mode 100644 gcc/testsuite/g++.dg/conversion/ref8.C create mode 100644 gcc/testsuite/g++.dg/conversion/ref9.C create mode 100644 gcc/testsuite/gcc.dg/pr106264.c create mode 100644 gcc/testsuite/gcc.dg/setjmp-7.c create mode 100644 gcc/testsuite/gfortran.dg/associate_59.f90 create mode 100644 gcc/testsuite/gfortran.dg/pr106331.f90 copy libstdc++-v3/testsuite/21_strings/basic_string/{operations/find/char/4.cc => [...] copy libstdc++-v3/testsuite/21_strings/basic_string/{operations/find/char/4.cc => [...] create mode 100644 libstdc++-v3/testsuite/util/testsuite_string.h