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-arm in repository toolchain/ci/gcc.
from a459ee44c0a aarch64: Improve size heuristic for cpymem expansion adds 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 new 86304da55ff Fix more testsuite fallout from computed goto changes
The 1 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/aarch64/aarch64-builtins.c | 12 +++ gcc/config/aarch64/aarch64-simd-builtins.def | 4 + gcc/config/aarch64/arm_neon.h | 32 +++---- 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.target/i386/vect-alignment-peeling-1.c | 90 ++++++++++++++++++ .../gcc.target/i386/vect-alignment-peeling-2.c | 90 ++++++++++++++++++ gcc/tree-vect-data-refs.c | 39 ++++++-- 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, 642 insertions(+), 136 deletions(-) create mode 100644 gcc/testsuite/gcc.target/i386/vect-alignment-peeling-1.c create mode 100644 gcc/testsuite/gcc.target/i386/vect-alignment-peeling-2.c 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