This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_gnu_native_check_binutils/master-arm in repository toolchain/ci/gcc.
from d3e7bb15e28 openmp: Disallow reduction with var private in containing p [...] adds 8f95e3c04d6 aarch64: Improve size optimisation heuristic for setmem expansion adds 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 adds 86304da55ff Fix more testsuite fallout from computed goto changes adds a672a225825 bpf: correct extra_headers adds 5e2adfeed21 Fortran: fix error recovery for invalid constructor adds 48c97c62c90 Use a separate TV_* timer for the VRP threader. adds 77731cb8f3c Avoid CFG updates in VRP threader if nothing changed. adds 24e30f485bc [PR102501] Adjust jump threading testcases for ppc64* and others. adds cd5448f6c53 MAINTAINERS: Add myself to DCO section adds d6a87d96d74 debug/102507: ICE in btf_finalize when compiling with -gbtf adds d238146e41e Daily bump. adds 64dd46dbc68 Plug memory leak in hybrid_threader. adds 257fd0333fe Add gimple_ranger::debug. adds b38a4bd1024 openmp: Add omp_aligned_{,c}alloc and omp_{c,re}alloc adds f5440ac7ad5 Plug possible snprintf overflow in lto-wrapper. adds c5369961fa3 libstdc++: Fix preprocessor check for C++17 new c2dc29c4a54 Fix thinko in previous alignment peeling change
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: ChangeLog | 4 + MAINTAINERS | 1 + gcc/ChangeLog | 68 ++++ gcc/DATESTAMP | 2 +- gcc/btfout.c | 8 +- gcc/config.gcc | 1 - gcc/config/aarch64/aarch64-builtins.c | 12 + gcc/config/aarch64/aarch64-simd-builtins.def | 4 + gcc/config/aarch64/aarch64.c | 67 ++-- gcc/config/aarch64/arm_neon.h | 32 +- gcc/fortran/ChangeLog | 5 + gcc/fortran/array.c | 3 + gcc/gimple-range.cc | 6 + gcc/gimple-range.h | 1 + gcc/lto-wrapper.c | 10 +- gcc/testsuite/ChangeLog | 55 +++ 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/gcc.dg/tree-ssa/pr66752-3.c | 4 +- gcc/testsuite/gcc.dg/tree-ssa/pr77445-2.c | 2 +- gcc/testsuite/gcc.target/aarch64/cpymem-size.c | 29 ++ .../gcc.target/aarch64/memset-corner-cases-2.c | 30 ++ .../gcc.target/aarch64/memset-strict-align-1.c | 10 +- .../gcc.target/i386/vect-alignment-peeling-1.c | 90 +++++ .../gcc.target/i386/vect-alignment-peeling-2.c | 90 +++++ gcc/testsuite/gfortran.dg/pr102520.f90 | 12 + gcc/timevar.def | 1 + gcc/tree-vect-data-refs.c | 39 +- gcc/tree-vrp.c | 12 +- libgomp/allocator.c | 398 ++++++++++++++++++++- libgomp/libgomp.map | 4 + libgomp/omp.h.in | 25 +- libgomp/testsuite/libgomp.c-c++-common/alloc-4.c | 20 +- libgomp/testsuite/libgomp.c-c++-common/alloc-5.c | 159 ++++++++ libgomp/testsuite/libgomp.c-c++-common/alloc-6.c | 58 +++ libgomp/testsuite/libgomp.c-c++-common/alloc-7.c | 182 ++++++++++ libgomp/testsuite/libgomp.c-c++-common/alloc-8.c | 184 ++++++++++ libstdc++-v3/ChangeLog | 63 ++++ 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 +++ 51 files changed, 2000 insertions(+), 202 deletions(-) create mode 100644 gcc/testsuite/gcc.target/aarch64/cpymem-size.c create mode 100644 gcc/testsuite/gcc.target/aarch64/memset-corner-cases-2.c 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 gcc/testsuite/gfortran.dg/pr102520.f90 create mode 100644 libgomp/testsuite/libgomp.c-c++-common/alloc-5.c create mode 100644 libgomp/testsuite/libgomp.c-c++-common/alloc-6.c create mode 100644 libgomp/testsuite/libgomp.c-c++-common/alloc-7.c create mode 100644 libgomp/testsuite/libgomp.c-c++-common/alloc-8.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