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/master-aarch64 in repository toolchain/ci/gcc.
from 4c773108164 Fix peeling for alignment with negative step adds b34fa88becb testsuite/102517 - fix FAIL of gcc.dg/pr78408-1.c with OImo [...] adds b59be1adbae libstdc++: Simplify std::basic_regex construction and assignment adds b701e1f8f68 libstdc++: std::basic_regex should treat '\0' as an ordinar [...] adds 9ca4c42a3b7 libstdc++: Check for invalid syntax_option_type values in <regex> adds f38cd3bdb4c libstdc++: Implement std::regex_constants::multiline (LWG 2503) adds 3caf7f87b1e aarch64: Fix type qualifiers for qtbl1 and qtbx1 Neon builtins adds 86304da55ff Fix more testsuite fallout from computed goto changes new a672a225825 bpf: correct extra_headers new 5e2adfeed21 Fortran: fix error recovery for invalid constructor
The 2 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/config.gcc | 1 - gcc/config/aarch64/aarch64-builtins.c | 12 +++ gcc/config/aarch64/aarch64-simd-builtins.def | 4 + gcc/config/aarch64/arm_neon.h | 32 +++---- gcc/fortran/array.c | 3 + gcc/testsuite/gcc.c-torture/compile/920831-1.c | 2 +- gcc/testsuite/gcc.c-torture/compile/pr27863.c | 2 +- gcc/testsuite/gcc.dg/pr78408-1.c | 2 +- gcc/testsuite/gfortran.dg/pr102520.f90 | 12 +++ libstdc++-v3/include/bits/regex.h | 104 +++++++++++++-------- libstdc++-v3/include/bits/regex_compiler.h | 61 ++++-------- libstdc++-v3/include/bits/regex_compiler.tcc | 10 +- libstdc++-v3/include/bits/regex_constants.h | 25 ++++- libstdc++-v3/include/bits/regex_error.h | 2 + libstdc++-v3/include/bits/regex_executor.h | 70 +++++++++++--- libstdc++-v3/include/bits/regex_scanner.tcc | 10 ++ .../28_regex/algorithms/regex_match/multiline.cc | 74 +++++++++++++++ .../testsuite/28_regex/basic_regex/84110.cc | 39 ++++++++ .../basic_regex/assign/exception_safety.cc | 20 ++++ .../28_regex/basic_regex/ctors/char/other.cc | 37 ++++++++ .../28_regex/basic_regex/ctors/grammar.cc | 53 +++++++++++ 21 files changed, 444 insertions(+), 131 deletions(-) create mode 100644 gcc/testsuite/gfortran.dg/pr102520.f90 create mode 100644 libstdc++-v3/testsuite/28_regex/algorithms/regex_match/multiline.cc create mode 100644 libstdc++-v3/testsuite/28_regex/basic_regex/84110.cc create mode 100644 libstdc++-v3/testsuite/28_regex/basic_regex/assign/exception_safety.cc create mode 100644 libstdc++-v3/testsuite/28_regex/basic_regex/ctors/char/other.cc create mode 100644 libstdc++-v3/testsuite/28_regex/basic_regex/ctors/grammar.cc