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_O3 in repository toolchain/ci/gcc.
from 7b4495d3c40 libstdc++: Fix constraints on std::expected<void, E> constr [...] adds 405eda0d34b Daily bump. adds 58586721c79 c++: friend implicit template instantiation [PR91618] adds 4822108e61a c++: constexpr non-trivial aggregate init [PR105191] adds 6e345078624 loongarch: testsuite: skip builtin-apply2.c adds c8f7324e81c loongarch: testsuite: adapt stack-usage-1.c for LP64 adds aabb9a261ef Propagate nondeterministic and side_effects flags in modref [...] adds 4943b75e9f0 Update semantic_interposition flag at analysis time new 3d41408c5d2 analyzer: fix folding of regions involving unknown ptrs [PR103892]
The 1 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 | 38 +++++++++++++ gcc/DATESTAMP | 2 +- gcc/analyzer/region-model-manager.cc | 37 +++++++++++-- gcc/analyzer/region-model.h | 2 + gcc/analyzer/region.cc | 11 +++- gcc/c/ChangeLog | 5 ++ gcc/cgraphunit.cc | 1 + gcc/cp/constexpr.cc | 3 +- gcc/cp/decl2.cc | 23 +++++++- gcc/cp/name-lookup.cc | 15 +++++ gcc/cp/pt.cc | 4 +- gcc/cp/tree.cc | 27 +++++++-- gcc/ipa-modref.cc | 23 ++++++++ gcc/testsuite/ChangeLog | 26 +++++++++ gcc/testsuite/g++.dg/cpp0x/constexpr-array28.C | 21 +++++++ gcc/testsuite/g++.dg/cpp0x/friend7.C | 2 +- gcc/testsuite/g++.dg/template/friend72.C | 15 +++++ gcc/testsuite/g++.dg/template/friend72a.C | 14 +++++ gcc/testsuite/g++.dg/template/friend73.C | 5 ++ gcc/testsuite/gcc.c-torture/compile/pr103376.c | 9 +++ gcc/testsuite/gcc.dg/analyzer/pr103892.c | 75 +++++++++++++++++++++++++ gcc/testsuite/gcc.dg/analyzer/pr96841.c | 2 +- gcc/testsuite/gcc.dg/builtin-apply2.c | 2 +- gcc/testsuite/gcc.dg/ipa/pr105160.c | 77 ++++++++++++++++++++++++++ gcc/testsuite/gcc.dg/stack-usage-1.c | 2 + libgcc/ChangeLog | 4 ++ libstdc++-v3/ChangeLog | 22 ++++++++ 27 files changed, 446 insertions(+), 21 deletions(-) create mode 100644 gcc/testsuite/g++.dg/cpp0x/constexpr-array28.C create mode 100644 gcc/testsuite/g++.dg/template/friend72.C create mode 100644 gcc/testsuite/g++.dg/template/friend72a.C create mode 100644 gcc/testsuite/g++.dg/template/friend73.C create mode 100644 gcc/testsuite/gcc.c-torture/compile/pr103376.c create mode 100644 gcc/testsuite/gcc.dg/analyzer/pr103892.c create mode 100644 gcc/testsuite/gcc.dg/ipa/pr105160.c