This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_bmk_gnu_apm/gnu-master-aarch64-spec2k6-Os_LTO in repository toolchain/ci/gcc.
from 8c0ebaf9f58 ipa/104303 - miscompilation of gnatmake adds af3cadb59fe AArch64: fix ls64 intrinsics expansion [PR104409] adds 68163cc2de1 testsuite: delete slp scan from loop vect test. adds 7e7a96f774e c++: use after free during name lookup w/ modules [PR99479] adds 45fb78c9c45 Disable float128 tests on VxWorks, PR target/104253. adds df00d10320c Daily bump. adds b789c44c646 tree-optimization/105175 - avoid -Wvector-operation-performance adds cef03728234 libgcc: IA64: don't compile glibc-based unwinder without li [...] adds 5e6597064b0 fold-const: Fix up make_range_step [PR105189] adds 6e274368720 c: Error on va_arg with function type [PR105149] adds 04ecadbeae5 testsuite: Fix up 20050113-1.c test for i686-linux [PR105187] adds e5453bcc217 tree-optimization/105198 - wrong code with predictive commoning adds 5522dec054c aarch64: PR target/105157 Increase number of cores TARGET_C [...] adds 29e355d0d67 libstdc++: Fix std::bad_expected_access constructor [PR105146] adds 0dfaf562521 libstdc++: Fix std::expected<void, E>::swap(expected&) [PR105154] adds 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 adds 3d41408c5d2 analyzer: fix folding of regions involving unknown ptrs [PR103892] adds 71cac7de8f1 Daily bump.
No new revisions were added by this update.
Summary of changes: gcc/ChangeLog | 141 +++++++++++++++++ gcc/DATESTAMP | 2 +- gcc/analyzer/ChangeLog | 48 ++++++ gcc/analyzer/region-model-manager.cc | 37 ++++- gcc/analyzer/region-model.h | 2 + gcc/analyzer/region.cc | 11 +- gcc/c/ChangeLog | 5 + gcc/c/c-typeck.cc | 6 + gcc/cgraphunit.cc | 1 + gcc/config.gcc | 2 +- gcc/config/aarch64/aarch64-builtins.cc | 11 +- gcc/config/aarch64/aarch64-c.cc | 2 + gcc/config/aarch64/aarch64-protos.h | 1 + gcc/config/aarch64/aarch64.cc | 14 +- gcc/config/aarch64/aarch64.h | 8 +- gcc/config/aarch64/arm_acle.h | 2 + gcc/cp/ChangeLog | 57 +++++++ gcc/cp/constexpr.cc | 3 +- gcc/cp/decl2.cc | 23 ++- gcc/cp/name-lookup.cc | 77 +++++----- gcc/cp/pt.cc | 4 +- gcc/cp/tree.cc | 27 +++- gcc/fold-const.cc | 28 +++- gcc/ipa-modref.cc | 23 +++ gcc/testsuite/ChangeLog | 167 +++++++++++++++++++++ gcc/testsuite/c-c++-common/torture/20050113-1.c | 1 + 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/g++.dg/torture/pr105189.C | 19 +++ 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/pr105149.c | 16 ++ gcc/testsuite/gcc.dg/pr105175.c | 16 ++ gcc/testsuite/gcc.dg/stack-usage-1.c | 2 + gcc/testsuite/gcc.dg/torture/pr105198.c | 26 ++++ .../complex/fast-math-complex-add-pattern-float.c | 1 - gcc/testsuite/lib/target-supports.exp | 13 +- gcc/tree-predcom.cc | 38 ++++- gcc/tree-vect-generic.cc | 41 +++-- gcc/tree-vect-stmts.cc | 2 + libgcc/ChangeLog | 4 + libgcc/config/ia64/fde-glibc.c | 2 + libstdc++-v3/ChangeLog | 27 ++++ libstdc++-v3/include/std/expected | 8 +- libstdc++-v3/testsuite/20_util/expected/bad.cc | 15 ++ libstdc++-v3/testsuite/20_util/expected/cons.cc | 18 +++ libstdc++-v3/testsuite/20_util/expected/swap.cc | 12 +- 53 files changed, 1079 insertions(+), 106 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/g++.dg/torture/pr105189.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 create mode 100644 gcc/testsuite/gcc.dg/pr105149.c create mode 100644 gcc/testsuite/gcc.dg/pr105175.c create mode 100644 gcc/testsuite/gcc.dg/torture/pr105198.c create mode 100644 libstdc++-v3/testsuite/20_util/expected/bad.cc