This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch devel/omp/gcc-11 in repository gcc.
from c8fdc3f666b Fortran: Add missing ST_OMP_END_SCOPE handling [PR102313] new ea29d3d097a Add OpenACC 'host_data' testing to 'gfortran.dg/goacc/unexp [...] new b6ae294ac21 openmp: Add support for OpenMP 5.1 atomics for C++ new e322c24ba19 libgomp: Spelling error fix in OpenMP 5.1 conformance section adds 6dd2650f96c Daily bump. adds a87d7fbef55 rs6000: Expand fmod and remainder when built with fast-math [...] adds 4fc907e18d1 Give more informative error message for by-reference types adds df2f733cd99 Remove superfluous call to UI_Is_In_Int_Range adds e94730e51af Fix internal error on pointer-to-pointer binding in LTO mode adds 1355ea50498 Fix inaccurate bounds in debug info for vector array types adds 82a95c08c0d Do not issue size error for too large array type adds 40c0122a1c5 Fix PR ada/101970 adds 4bcb3213f74 Verify destination[source] of a load[store] instruction is [...] adds e9a6a100046 Daily bump. adds 819e7784a06 rs6000: Move rs6000_split_multireg_move to later in file adds ed9006264f6 rs6000: Generate an lxvp instead of two adjacent lxv instructions adds b429c81170c Enable store fusion on Power10. adds 6f61195e043 c++: Fix __is_*constructible/assignable for templates [PR102305] adds 6550198bd84 c++: Update DECL_*SIZE for objects with flexible array memb [...] adds 352c0b2668a c++: Fix handling of decls with flexible array members init [...] adds 0287b697b01 Daily bump. adds f00530266f8 Fix target/101934: aarch64 memset code creates unaligned st [...] adds b602b667c05 sparc: Print out bit names for LEON and LEON3 with -mdebug adds 807c7e12486 sparc: Treat more instructions as load or store in errata w [...] adds f5b008faf0a sparc: Skip all empty assembly statements adds 7b30a12edf7 sparc: Prevent atomic instructions in beginning of function [...] adds 3fd9656951b sparc: Add NOP in stack_protect_setsi if sparc_fix_b2bst enabled adds c503f416f22 sparc: Add scheduling information for LEON5 adds 58c76fb477b Fortran - ensure simplification of bounds of array-valued n [...] adds 3bc4ed08514 Fortran - fix handling of substring start and end indices adds a6aa2458a92 Daily bump. adds 469aad8b5d7 Fix PR rtl-optimization/102306 new 472001469c0 Merge remote-tracking branch 'origin/releases/gcc-11' into [...]
The 4 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 | 108 + gcc/DATESTAMP | 2 +- gcc/ada/ChangeLog | 35 + gcc/ada/exp_attr.adb | 23 +- gcc/ada/gcc-interface/decl.c | 25 +- gcc/ada/gcc-interface/utils.c | 9 +- gcc/c-family/ChangeLog.omp | 12 + gcc/c-family/c-omp.c | 28 +- gcc/c/ChangeLog.omp | 8 + gcc/c/c-parser.c | 2 +- gcc/combine.c | 10 + gcc/config/aarch64/aarch64.c | 4 +- gcc/config/rs6000/rs6000-cpus.def | 4 +- gcc/config/rs6000/rs6000.c | 3228 ++++++++++---------- gcc/config/rs6000/rs6000.md | 36 + gcc/config/rs6000/rs6000.opt | 4 + gcc/config/sparc/leon5.md | 103 + gcc/config/sparc/sparc-opts.h | 1 + gcc/config/sparc/sparc.c | 183 +- gcc/config/sparc/sparc.h | 36 +- gcc/config/sparc/sparc.md | 12 +- gcc/config/sparc/sparc.opt | 3 + gcc/cp/ChangeLog | 29 + gcc/cp/ChangeLog.omp | 14 + gcc/cp/cp-tree.h | 4 +- gcc/cp/decl.c | 32 + gcc/cp/method.c | 1 + gcc/cp/parser.c | 466 ++- gcc/cp/pt.c | 53 +- gcc/cp/semantics.c | 31 +- gcc/cp/typeck2.c | 15 +- gcc/doc/invoke.texi | 13 +- gcc/fortran/ChangeLog | 19 + gcc/fortran/decl.c | 18 + gcc/fortran/expr.c | 4 +- gcc/testsuite/ChangeLog | 73 + gcc/testsuite/ChangeLog.omp | 26 + gcc/testsuite/c-c++-common/gomp/atomic-18.c | 8 +- gcc/testsuite/c-c++-common/gomp/atomic-25.c | 2 +- gcc/testsuite/c-c++-common/gomp/atomic-26.c | 2 +- gcc/testsuite/c-c++-common/gomp/atomic-27.c | 2 +- gcc/testsuite/c-c++-common/gomp/atomic-28.c | 2 +- gcc/testsuite/c-c++-common/gomp/atomic-29.c | 2 +- gcc/testsuite/c-c++-common/gomp/atomic-30.c | 97 +- gcc/testsuite/g++.dg/cpp0x/pr102305.C | 39 + .../g++.dg/ext/{flexary13.C => flexary39.C} | 37 +- gcc/testsuite/g++.dg/ext/flexary40.C | 50 + gcc/testsuite/g++.dg/gomp/atomic-20.C | 104 + gcc/testsuite/g++.dg/gomp/atomic-5.C | 2 +- .../struct-size.c => g++.target/i386/pr102295.C} | 5 +- .../gcc.target/aarch64/memset-strict-align-1.c | 28 + gcc/testsuite/gcc.target/powerpc/fusion-p10-stst.c | 31 + .../gcc.target/powerpc/fusion-p10-stst2.c | 30 + gcc/testsuite/gcc.target/powerpc/mma-builtin-9.c | 28 + gcc/testsuite/gcc.target/powerpc/pr97142.c | 35 + gcc/testsuite/gcc.target/sparc/20210917-1.c | 19 + gcc/testsuite/gfortran.dg/goacc/unexpected-end.f90 | 4 +- gcc/testsuite/gfortran.dg/pr82314.f90 | 11 + gcc/testsuite/gfortran.dg/substr_6.f90 | 2 + gcc/testsuite/gnat.dg/enum_rep2.adb | 117 + gcc/varasm.c | 12 +- libgomp/ChangeLog.omp | 20 + libgomp/libgomp.texi | 4 +- libgomp/testsuite/libgomp.c++/atomic-16.C | 538 ++++ libgomp/testsuite/libgomp.c++/atomic-17.C | 407 +++ libgomp/testsuite/libgomp.c-c++-common/atomic-19.c | 2 +- libgomp/testsuite/libgomp.c-c++-common/atomic-20.c | 2 +- libgomp/testsuite/libgomp.c-c++-common/atomic-21.c | 2 +- 68 files changed, 4579 insertions(+), 1739 deletions(-) create mode 100644 gcc/config/sparc/leon5.md create mode 100644 gcc/testsuite/g++.dg/cpp0x/pr102305.C copy gcc/testsuite/g++.dg/ext/{flexary13.C => flexary39.C} (53%) create mode 100644 gcc/testsuite/g++.dg/ext/flexary40.C create mode 100644 gcc/testsuite/g++.dg/gomp/atomic-20.C copy gcc/testsuite/{gcc.target/i386/struct-size.c => g++.target/i386/pr102295.C} (57%) create mode 100644 gcc/testsuite/gcc.target/aarch64/memset-strict-align-1.c create mode 100644 gcc/testsuite/gcc.target/powerpc/fusion-p10-stst.c create mode 100644 gcc/testsuite/gcc.target/powerpc/fusion-p10-stst2.c create mode 100644 gcc/testsuite/gcc.target/powerpc/mma-builtin-9.c create mode 100644 gcc/testsuite/gcc.target/powerpc/pr97142.c create mode 100644 gcc/testsuite/gcc.target/sparc/20210917-1.c create mode 100644 gcc/testsuite/gfortran.dg/pr82314.f90 create mode 100644 gcc/testsuite/gnat.dg/enum_rep2.adb create mode 100644 libgomp/testsuite/libgomp.c++/atomic-16.C create mode 100644 libgomp/testsuite/libgomp.c++/atomic-17.C