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 in repository toolchain/ci/gcc.
from a2287813b13 Daily bump. adds 8fa7216ae0d Fix ICE caused by NULL_RTX returned by lowpart_subreg. adds 1002a7ace11 LTO: Fixes for renaming issues with offload/OpenMP [PR104285] adds 4a9e92164a5 testsuite: Fix up sse2-v1ti-shift-3.c test [PR102986] adds 5bf59b00480 libstdc++: Disable atomic wait for freestanding [PR105021] adds bd81327b03d libstdc++: Fix feature test macros in <version> for freestanding adds 018805e2791 rs6000: Adjust error messages. adds 4894d69a1f3 libstdc++: Add missing constraints to std::bit_cast [PR105027] new 160b095fc9d analyzer: fix ICE adding note to disabled diagnostic [PR104997] new e6a3991ea15 analyzer: use tainted_allocation_size::m_mem_space [PR105017] new a3f78748fab c++: using from enclosing class template [PR105006]
The 3 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/analyzer/diagnostic-manager.cc | 18 +- gcc/analyzer/diagnostic-manager.h | 4 +- gcc/analyzer/engine.cc | 9 +- gcc/analyzer/sm-taint.cc | 82 ++++--- gcc/config/i386/sse.md | 236 +++++++++++++++------ gcc/config/rs6000/rs6000-c.cc | 5 +- gcc/config/rs6000/rs6000.cc | 4 +- gcc/cp/name-lookup.cc | 15 ++ gcc/lto/lto-partition.cc | 17 +- gcc/lto/lto.cc | 58 ++--- gcc/testsuite/g++.dg/template/using30.C | 13 ++ gcc/testsuite/gcc.dg/analyzer/taint-alloc-1.c | 2 + .../analyzer/write-to-string-literal-4-disabled.c | 28 +++ .../gcc.target/i386/avx512fp16-vfcmaddcph-1a.c | 2 +- .../gcc.target/i386/avx512fp16-vfmaddcph-1a.c | 2 +- .../gcc.target/i386/avx512fp16vl-vfcmaddcph-1a.c | 4 +- .../gcc.target/i386/avx512fp16vl-vfmaddcph-1a.c | 4 +- gcc/testsuite/gcc.target/i386/pr104976.c | 13 ++ gcc/testsuite/gcc.target/i386/sse2-v1ti-shift-3.c | 8 +- .../testsuite/libgomp.c++/target-same-name-2-a.C | 50 +++++ .../testsuite/libgomp.c++/target-same-name-2-b.C | 50 +++++ libgomp/testsuite/libgomp.c++/target-same-name-2.C | 24 +++ .../libgomp.c-c++-common/target-same-name-1-a.c | 60 ++++++ .../libgomp.c-c++-common/target-same-name-1-b.c | 60 ++++++ .../libgomp.c-c++-common/target-same-name-1.c | 46 ++++ libstdc++-v3/include/bits/atomic_base.h | 2 +- libstdc++-v3/include/std/bit | 4 + libstdc++-v3/include/std/version | 35 +-- .../testsuite/26_numerics/bit/bit.cast/105027.cc | 18 ++ 29 files changed, 709 insertions(+), 164 deletions(-) create mode 100644 gcc/testsuite/g++.dg/template/using30.C create mode 100644 gcc/testsuite/gcc.dg/analyzer/write-to-string-literal-4-disabled.c create mode 100644 gcc/testsuite/gcc.target/i386/pr104976.c create mode 100644 libgomp/testsuite/libgomp.c++/target-same-name-2-a.C create mode 100644 libgomp/testsuite/libgomp.c++/target-same-name-2-b.C create mode 100644 libgomp/testsuite/libgomp.c++/target-same-name-2.C create mode 100644 libgomp/testsuite/libgomp.c-c++-common/target-same-name-1-a.c create mode 100644 libgomp/testsuite/libgomp.c-c++-common/target-same-name-1-b.c create mode 100644 libgomp/testsuite/libgomp.c-c++-common/target-same-name-1.c create mode 100644 libstdc++-v3/testsuite/26_numerics/bit/bit.cast/105027.cc