This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_kernel/gnu-master-arm-next-defconfig in repository toolchain/ci/gcc.
from 529ea7d9596 Complete change to resolve pr90275. adds 07fe4af4d51 rs6000: Add back some w* constraints (PR91886) adds b3341826531 libstdc++: Fix is_trivially_constructible (PR 94033) adds b5562f1187d Daily bump. adds 73bc09fa8c6 middle-end/94216 fix another build_fold_addr_expr use adds f3280e4c0c9 ipa/94217 simplify offsetted address build adds c7e90196818 phiopt: Avoid -fcompare-debug bug in phiopt [PR94211] adds bb83e069eba libgomp/testsuite: ignore blank-line output for function-no [...] adds 02f7334ac93 c++: Fix up handling of captured vars in lambdas in OpenMP [...] adds f5389e17e4b Update include/plugin-api.h. adds c8429c2aba8 API extension for binutils (type of symbols). adds f22712bd8a2 Fix inliner ICE on alias with flatten attribute [PR92372] adds 37482edc3f7 d/dmd: Merge upstream dmd d1a606599 new 9def91e9f2a c: Fix up cfun->function_end_locus from the C FE [PR94029]
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 | 40 ++++++ gcc/DATESTAMP | 2 +- gcc/c/ChangeLog | 14 ++ gcc/c/c-decl.c | 4 +- gcc/c/c-parser.c | 51 +++++--- gcc/c/c-tree.h | 2 +- gcc/cgraphunit.c | 8 ++ gcc/config/rs6000/constraints.md | 11 ++ gcc/cp/ChangeLog | 8 ++ gcc/cp/cp-gimplify.c | 17 ++- gcc/cp/parser.c | 2 + gcc/d/dmd/MERGE | 2 +- gcc/d/dmd/dclass.c | 1 - gcc/d/dmd/expressionsem.c | 1 + gcc/d/dmd/module.h | 1 + gcc/fold-const.c | 2 +- gcc/ipa-cp.c | 12 +- gcc/ipa-inline.c | 3 + gcc/lto-section-in.c | 1 + gcc/lto-streamer-out.c | 82 +++++++++++- gcc/lto-streamer.h | 1 + gcc/testsuite/ChangeLog | 21 +++ gcc/testsuite/g++.dg/torture/pr94216.C | 45 +++++++ gcc/testsuite/gcc.c-torture/pr92372.c | 16 +++ gcc/testsuite/gcc.dg/attr-flatten-1.c | 18 +++ gcc/testsuite/gcc.dg/pr94211.c | 12 ++ gcc/testsuite/gcc.misc-tests/gcov-pr94029.c | 14 ++ .../gdc.test/compilable/imports/pr9471a.d | 2 + .../gdc.test/compilable/imports/pr9471b.d | 5 + .../gdc.test/compilable/imports/pr9471c.d | 18 +++ .../gdc.test/compilable/imports/pr9471d.d | 1 + gcc/testsuite/gdc.test/compilable/pr9471.d | 6 + gcc/testsuite/gdc.test/runnable/traits.d | 4 +- gcc/tree-ssa-phiopt.c | 10 +- include/ChangeLog | 13 ++ include/lto-symtab.h | 13 ++ include/plugin-api.h | 32 ++++- libgomp/ChangeLog | 10 ++ libgomp/testsuite/libgomp.c++/pr93931.C | 120 ++++++++++++++++++ .../libgomp.c-c++-common/function-not-offloaded.c | 1 + libstdc++-v3/ChangeLog | 13 ++ libstdc++-v3/include/std/type_traits | 70 ++++------ .../20_util/is_nothrow_constructible/94003.cc | 46 +++++++ lto-plugin/ChangeLog | 20 +++ lto-plugin/lto-plugin.c | 141 +++++++++++++++++++-- 45 files changed, 812 insertions(+), 104 deletions(-) create mode 100644 gcc/testsuite/g++.dg/torture/pr94216.C create mode 100644 gcc/testsuite/gcc.c-torture/pr92372.c create mode 100644 gcc/testsuite/gcc.dg/attr-flatten-1.c create mode 100644 gcc/testsuite/gcc.dg/pr94211.c create mode 100644 gcc/testsuite/gcc.misc-tests/gcov-pr94029.c create mode 100644 gcc/testsuite/gdc.test/compilable/imports/pr9471a.d create mode 100644 gcc/testsuite/gdc.test/compilable/imports/pr9471b.d create mode 100644 gcc/testsuite/gdc.test/compilable/imports/pr9471c.d create mode 100644 gcc/testsuite/gdc.test/compilable/imports/pr9471d.d create mode 100644 gcc/testsuite/gdc.test/compilable/pr9471.d create mode 100644 libgomp/testsuite/libgomp.c++/pr93931.C create mode 100644 libstdc++-v3/testsuite/20_util/is_nothrow_constructible/94003.cc