This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from 536fb78 Use a XOR cipher instead of byte shuffling to protect against [...] new 1f2c784 * config/i386/t-i386 (i386-c.o): Don't depend on i386-built [...] new 3326f9d * config/i386/fxsrintrin.h (_fxsave): Remove return keyword [...] new 652262f * config/i386/rdseedintrin.h (_rdseed16_step, _rdseed32_step [...] new cf0bbc3 PR fortran/69281 * trans-openmp.c (gfc_trans_omp_parallel, [...] new 9354a9a PR fortran/72744 * gfortran.dg/gomp/pr72744.f90: New test. new 2181206 PR fortran/71014 * resolve.c (gfc_resolve): For ns->constru [...] new dee8cef Fix ambiguities in C++17 mode new 58aa72c Define std::atomic<T>::is_always_lock_free for C++17 new f744c2b Define std::not_fn for C++17
The 9 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/ChangeLog | 62 +++ gcc/config/i386/avx2intrin.h | 488 +++++++++++---------- gcc/config/i386/avx512fintrin.h | 94 ++-- gcc/config/i386/avx512pfintrin.h | 96 ++-- gcc/config/i386/avx512vlintrin.h | 48 +- gcc/config/i386/fxsrintrin.h | 8 +- gcc/config/i386/gmm_malloc.h | 36 +- gcc/config/i386/ia32intrin.h | 8 +- gcc/config/i386/lwpintrin.h | 22 +- gcc/config/i386/pkuintrin.h | 6 +- gcc/config/i386/pmm_malloc.h | 20 +- gcc/config/i386/rdseedintrin.h | 12 +- gcc/config/i386/rtmintrin.h | 4 +- gcc/config/i386/t-i386 | 4 +- gcc/config/i386/xsaveintrin.h | 8 +- gcc/config/i386/xsaveoptintrin.h | 4 +- gcc/fortran/ChangeLog | 11 + gcc/fortran/resolve.c | 6 +- gcc/fortran/trans-openmp.c | 10 +- gcc/testsuite/ChangeLog | 8 + gcc/testsuite/gfortran.dg/gomp/pr69281.f90 | 63 +++ gcc/testsuite/gfortran.dg/gomp/pr72744.f90 | 18 + libgomp/ChangeLog | 5 + libgomp/testsuite/libgomp.fortran/pr71014.f90 | 20 + libstdc++-v3/ChangeLog | 23 + libstdc++-v3/doc/html/manual/status.html | 8 +- libstdc++-v3/doc/xml/manual/status_cxx2017.xml | 6 +- libstdc++-v3/include/experimental/functional | 46 +- libstdc++-v3/include/experimental/tuple | 5 +- libstdc++-v3/include/std/atomic | 73 +++ libstdc++-v3/include/std/functional | 68 +++ libstdc++-v3/include/std/tuple | 5 +- .../functional/not_fn.cc => 20_util/not_fn/1.cc} | 23 +- libstdc++-v3/testsuite/29_atomics/atomic/60695.cc | 2 +- .../atomic/is_always_lock_free.cc} | 17 +- .../atomic_integral/is_always_lock_free.cc | 43 ++ .../testsuite/experimental/functional/not_fn.cc | 15 +- .../testsuite/experimental/system_error/value.cc | 14 +- .../testsuite/experimental/tuple/tuple_size.cc | 5 +- .../testsuite/experimental/type_traits/value.cc | 70 ++- 40 files changed, 995 insertions(+), 489 deletions(-) create mode 100644 gcc/testsuite/gfortran.dg/gomp/pr69281.f90 create mode 100644 gcc/testsuite/gfortran.dg/gomp/pr72744.f90 create mode 100644 libgomp/testsuite/libgomp.fortran/pr71014.f90 copy libstdc++-v3/testsuite/{experimental/functional/not_fn.cc => 20_util/not_fn/1 [...] copy libstdc++-v3/testsuite/{20_util/shared_ptr/requirements/weak_type.cc => 29_at [...] create mode 100644 libstdc++-v3/testsuite/29_atomics/atomic_integral/is_always_loc [...]