This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_gcc_check/release-arm 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.
No new revisions were added by this update.
Summary of changes: gcc/DATESTAMP | 2 +- gcc/analyzer/ChangeLog | 17 ++++++ gcc/analyzer/svalue.cc | 33 ++++++++--- gcc/c-family/ChangeLog | 9 +++ gcc/c-family/c-common.c | 2 +- gcc/cp/ChangeLog | 32 +++++++++++ gcc/cp/parser.c | 1 + gcc/cp/pt.c | 7 ++- gcc/cp/semantics.c | 2 +- gcc/testsuite/ChangeLog | 67 ++++++++++++++++++++++ gcc/testsuite/g++.dg/cpp0x/decltype81.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 ++++ gcc/testsuite/gcc.dg/analyzer/pr105252.c | 20 +++++++ gcc/testsuite/gcc.dg/analyzer/pr105365.c | 17 ++++++ gcc/testsuite/gcc.dg/analyzer/pr105366.c | 19 ++++++ .../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 +- libstdc++-v3/ChangeLog | 14 +++++ libstdc++-v3/src/c++17/fs_ops.cc | 8 ++- libstdc++-v3/src/filesystem/ops.cc | 8 ++- .../testsuite/27_io/filesystem/operations/copy.cc | 29 ++++++++++ .../experimental/filesystem/operations/copy.cc | 29 ++++++++++ 38 files changed, 385 insertions(+), 37 deletions(-) create mode 100644 gcc/testsuite/g++.dg/cpp0x/decltype81.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