This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch devel/c++-coroutines in repository gcc.
from d8c56bfff60 Merge master r12-3967. 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 adds c2dc29c4a54 Fix thinko in previous alignment peeling change adds 09f032c2205 Refine alingment peeling fix adds 32bd81eba46 Do not hide asm_out_file in ASM_OUTPUT_ASCII. adds c3d11a1e952 testsuite: Skip a test-case when LTO is used [PR102509] adds 70de20db232 openmp: Add omp_aligned_{,c}alloc and omp_{c,re}alloc for Fortran adds ef37ddf477a libgomp.fortran/alloc-*.f90: Add missing dg-prune-output new 8ee438cd62b Merge master r12-3984.
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/defaults.h | 15 +- gcc/fortran/ChangeLog | 5 + gcc/gimple-range.cc | 6 + gcc/gimple-range.h | 1 + gcc/lto-wrapper.c | 10 +- gcc/omp-low.c | 8 +- gcc/testsuite/ChangeLog | 55 +++ .../gcc.c-torture/compile/attr-complex-method-2.c | 1 + .../gcc.c-torture/compile/attr-complex-method.c | 1 + gcc/testsuite/gcc.dg/tree-ssa/pr66752-3.c | 4 +- gcc/testsuite/gcc.dg/tree-ssa/pr77445-2.c | 2 +- gcc/timevar.def | 1 + gcc/tree-vect-data-refs.c | 10 +- gcc/tree-vrp.c | 12 +- libgomp/allocator.c | 398 ++++++++++++++++++++- libgomp/libgomp.map | 4 + libgomp/libgomp.texi | 2 +- libgomp/omp.h.in | 25 +- libgomp/omp_lib.f90.in | 43 ++- libgomp/omp_lib.h.in | 46 ++- libgomp/testsuite/libgomp.c-c++-common/alloc-4.c | 20 +- .../libgomp.c-c++-common/{alloc-1.c => alloc-5.c} | 36 +- libgomp/testsuite/libgomp.c-c++-common/alloc-6.c | 58 +++ .../libgomp.c-c++-common/{alloc-1.c => alloc-7.c} | 61 +++- .../libgomp.c-c++-common/{alloc-1.c => alloc-8.c} | 65 +++- libgomp/testsuite/libgomp.fortran/alloc-10.f90 | 199 +++++++++++ libgomp/testsuite/libgomp.fortran/alloc-6.f90 | 45 +++ libgomp/testsuite/libgomp.fortran/alloc-7.c | 5 + libgomp/testsuite/libgomp.fortran/alloc-7.f90 | 175 +++++++++ libgomp/testsuite/libgomp.fortran/alloc-8.f90 | 58 +++ libgomp/testsuite/libgomp.fortran/alloc-9.f90 | 197 ++++++++++ libstdc++-v3/ChangeLog | 63 ++++ libstdc++-v3/include/bits/regex.h | 2 +- 38 files changed, 1608 insertions(+), 108 deletions(-) copy libgomp/testsuite/libgomp.c-c++-common/{alloc-1.c => alloc-5.c} (77%) create mode 100644 libgomp/testsuite/libgomp.c-c++-common/alloc-6.c copy libgomp/testsuite/libgomp.c-c++-common/{alloc-1.c => alloc-7.c} (69%) copy libgomp/testsuite/libgomp.c-c++-common/{alloc-1.c => alloc-8.c} (65%) create mode 100644 libgomp/testsuite/libgomp.fortran/alloc-10.f90 create mode 100644 libgomp/testsuite/libgomp.fortran/alloc-6.f90 create mode 100644 libgomp/testsuite/libgomp.fortran/alloc-7.c create mode 100644 libgomp/testsuite/libgomp.fortran/alloc-7.f90 create mode 100644 libgomp/testsuite/libgomp.fortran/alloc-8.f90 create mode 100644 libgomp/testsuite/libgomp.fortran/alloc-9.f90