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/release-aarch64-bootstrap_debug in repository toolchain/ci/gcc.
from 0da057c7d95 Daily bump. adds cdc254edf4e Daily bump. adds eb6f6f638a5 libstdc++: Add deduction guides for std::packaged_task [PR105375] adds c5d458ec228 libphobos: Don't call free on the TLS array in the emutls d [...] adds 5890602408c libphobos: Give _Unwind_Exception an alignment that best re [...] adds 8790ff545d2 Daily bump. adds 8a02dab2aac AVX512F: Add missing macro for mask(z?)_scalf_s[sd] [PR 105339] adds 3a1358e5f38 c++: enum in generic lambda at global scope [PR105398] adds a5cea982f90 Daily bump. adds 73ceece5363 testsuite: Backport testsuite changes from GCC 12 to GCC 11 adds 940bf20cd33 c++: global-namespace-qualified var after class def [PR90107] adds c4332c785c8 c++: partial ordering with dependent NTTP type [PR105289] adds 992dd9a071c c++: ICE with requires-expr and -Wsequence-point [PR105304] adds 8969d00bf16 c++: decltype of non-dependent call of class type [PR105386] adds 9821d286bce libstdc++: Fix error reporting in filesystem::copy [PR99290]
No new revisions were added by this update.
Summary of changes: gcc/ChangeLog | 20 +++++ gcc/DATESTAMP | 2 +- gcc/c-family/c-common.c | 2 +- gcc/config/i386/avx512fintrin.h | 76 ++++++++++++++----- gcc/cp/ChangeLog | 8 ++ gcc/cp/parser.c | 1 + gcc/cp/pt.c | 9 ++- gcc/cp/semantics.c | 2 +- gcc/testsuite/ChangeLog | 16 ++++ gcc/testsuite/g++.dg/cpp0x/decltype81.C | 15 ++++ gcc/testsuite/g++.dg/cpp1y/lambda-generic-enum2.C | 15 ++++ gcc/testsuite/g++.dg/cpp2a/concepts-requires30.C | 10 +++ gcc/testsuite/g++.dg/parse/qualified6.C | 10 +++ .../g++.dg/template/partial-specialization11.C | 11 +++ .../g++.dg/template/partial-specialization12.C | 12 +++ .../complex/fast-math-bb-slp-complex-mul-float.c | 5 +- .../vect/complex/fast-math-complex-add-double.c | 4 +- .../vect/complex/fast-math-complex-add-float.c | 4 +- .../complex/fast-math-complex-add-half-float.c | 7 +- .../complex/fast-math-complex-add-pattern-double.c | 3 +- .../complex/fast-math-complex-add-pattern-float.c | 3 +- .../fast-math-complex-add-pattern-half-float.c | 8 +- .../complex/fast-math-complex-mla-half-float.c | 2 + .../vect/complex/fast-math-complex-mls-double.c | 1 + .../vect/complex/fast-math-complex-mls-float.c | 2 +- .../complex/fast-math-complex-mls-half-float.c | 3 +- .../vect/complex/fast-math-complex-mul-double.c | 1 + .../vect/complex/fast-math-complex-mul-float.c | 1 + .../complex/fast-math-complex-mul-half-float.c | 2 + gcc/testsuite/gcc.dg/vect/vect.exp | 2 +- gcc/testsuite/gcc.target/i386/sse-14.c | 4 + libphobos/ChangeLog | 16 ++++ libphobos/libdruntime/gcc/emutls.d | 8 +- libphobos/libdruntime/gcc/unwind/generic.d | 22 +++++- libstdc++-v3/ChangeLog | 9 +++ libstdc++-v3/include/std/future | 11 +++ libstdc++-v3/src/c++17/fs_ops.cc | 8 +- libstdc++-v3/src/filesystem/ops.cc | 8 +- .../testsuite/27_io/filesystem/operations/copy.cc | 29 ++++++++ .../30_threads/packaged_task/cons/deduction.cc | 85 ++++++++++++++++++++++ .../experimental/filesystem/operations/copy.cc | 29 ++++++++ 41 files changed, 430 insertions(+), 56 deletions(-) create mode 100644 gcc/testsuite/g++.dg/cpp0x/decltype81.C create mode 100644 gcc/testsuite/g++.dg/cpp1y/lambda-generic-enum2.C create mode 100644 gcc/testsuite/g++.dg/cpp2a/concepts-requires30.C create mode 100644 gcc/testsuite/g++.dg/parse/qualified6.C create mode 100644 gcc/testsuite/g++.dg/template/partial-specialization11.C create mode 100644 gcc/testsuite/g++.dg/template/partial-specialization12.C create mode 100644 libstdc++-v3/testsuite/30_threads/packaged_task/cons/deduction.cc