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-release-arm-next-allmodconfig in repository toolchain/ci/gcc.
from 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] adds 03e7ac90213 analyzer: fix ICE comparing VECTOR_CSTs [PR105252] adds 7f6033735bf analyzer: fix ICEs on complex constants [PR105365,105366] adds 14aad65778c Daily bump. adds 9513759e3c0 Daily bump. adds 6850151425b Daily bump. adds 46813278e44 Daily bump. adds 81f4269f0cd Daily bump. adds 195fe5152fc testsuite: vect: update unaligned message adds 043949882d5 Daily bump. adds 20fc0902adb Daily bump. adds 8cad7c9c66b Daily bump. adds 799ff8e3e38 [PR105324] libstdc++: testsuite: pr105324 requires FP from_char adds d3821276254 x86: Add missing .note.GNU-stack to assembly source adds 70d8bd6edae rtlanal: Fix up replace_rtx [PR105333] adds 79265f689bd asan: Fix up asan_redzone_buffer::emit_redzone_byte [PR105396] adds 65c1c480b33 i386: Fix up ix86_gimplify_va_arg [PR105331] adds 2fd2e6c1dff c++: Don't emit deprecated warnings on lambda declarations adds e22cab0a57d Daily bump. adds 49dee6fd47b Daily bump.
No new revisions were added by this update.
Summary of changes: gcc/ChangeLog | 32 ++++++ gcc/DATESTAMP | 2 +- gcc/analyzer/ChangeLog | 17 +++ gcc/analyzer/svalue.cc | 33 ++++-- gcc/asan.c | 14 ++- gcc/c-family/ChangeLog | 9 ++ gcc/c-family/c-common.c | 2 +- gcc/config/i386/i386.c | 1 + gcc/cp/ChangeLog | 41 +++++++ gcc/cp/lambda.c | 11 +- gcc/cp/parser.c | 1 + gcc/cp/pt.c | 7 +- gcc/cp/semantics.c | 2 +- gcc/rtlanal.c | 4 +- gcc/testsuite/ChangeLog | 119 +++++++++++++++++++++ gcc/testsuite/g++.dg/cpp0x/decltype81.C | 15 +++ gcc/testsuite/g++.dg/cpp23/lambda-attr1.C | 29 +++++ 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 +++ gcc/testsuite/gcc.dg/analyzer/pr105252.c | 20 ++++ gcc/testsuite/gcc.dg/analyzer/pr105365.c | 17 +++ gcc/testsuite/gcc.dg/analyzer/pr105366.c | 19 ++++ gcc/testsuite/gcc.dg/asan/pr105396.c | 19 ++++ gcc/testsuite/gcc.dg/pr105331.c | 11 ++ gcc/testsuite/gcc.dg/pr105333.c | 21 ++++ .../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.dg/vect/costmodel/ppc/costmodel-vect-31a.c | 2 +- gcc/testsuite/gcc.dg/vect/vect.exp | 2 +- gcc/testsuite/gcc.target/i386/iamcu/asm-support.S | 1 + gcc/testsuite/gcc.target/x86_64/abi/asm-support.S | 1 + .../gcc.target/x86_64/abi/avx/asm-support.S | 1 + .../gcc.target/x86_64/abi/avx512f/asm-support.S | 1 + .../gcc.target/x86_64/abi/ms-sysv/do-test.S | 1 + libstdc++-v3/ChangeLog | 23 ++++ libstdc++-v3/src/c++17/fs_ops.cc | 8 +- libstdc++-v3/src/filesystem/ops.cc | 8 +- .../testsuite/20_util/from_chars/pr105324.cc | 2 + .../testsuite/27_io/filesystem/operations/copy.cc | 29 +++++ .../experimental/filesystem/operations/copy.cc | 29 +++++ 54 files changed, 595 insertions(+), 48 deletions(-) create mode 100644 gcc/testsuite/g++.dg/cpp0x/decltype81.C create mode 100644 gcc/testsuite/g++.dg/cpp23/lambda-attr1.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 gcc/testsuite/gcc.dg/analyzer/pr105252.c create mode 100644 gcc/testsuite/gcc.dg/analyzer/pr105365.c create mode 100644 gcc/testsuite/gcc.dg/analyzer/pr105366.c create mode 100644 gcc/testsuite/gcc.dg/asan/pr105396.c create mode 100644 gcc/testsuite/gcc.dg/pr105331.c create mode 100644 gcc/testsuite/gcc.dg/pr105333.c