This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch devel/omp/gcc-12 in repository gcc.
from 479d1a062a5 amdgcn: OpenMP SIMD routine support new 92e848d3aeb openmp: Partial OpenMP 5.2 doacross and omp_cur_iteration support new 8d2253f407e nvptx: Silence unused variable warning in output_constant_p [...] adds b33602e5b83 Daily bump. adds f9593025a29 Fix up dump_printf_loc format attribute and adjust uses [PR106782] adds a114570e360 Daily bump. adds e69134e1255 AArch64: Fix bootstrap failure due to dump_printf_loc forma [...] adds de1ba234311 arm: correctly handle misaligned MEMs on MVE [PR105463] adds 3835765ae96 cselib: add function to check if SET is redundant [PR106187] adds a1caa427040 Daily bump. adds 2d4f60f206c rs6000: Don't ICE when we disassemble an MMA variable [PR101322] adds 29b456e0676 Daily bump. adds f4f72a25a9d Daily bump. new d07ad71e727 Merge branch 'releases/gcc-12' into devel/omp/gcc-12
The 3 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 | 66 ++++++++++ gcc/ChangeLog.omp | 77 ++++++++++++ gcc/DATESTAMP | 2 +- gcc/alias.cc | 14 +++ gcc/alias.h | 1 + gcc/c-family/c-omp.cc | 22 ++-- gcc/c-family/c-pragma.h | 1 + gcc/c/ChangeLog.omp | 30 +++++ gcc/c/c-parser.cc | 164 +++++++++++++++++------- gcc/c/c-typeck.cc | 13 +- gcc/cfgcleanup.cc | 2 +- gcc/config/aarch64/aarch64.cc | 3 +- gcc/config/arm/mve.md | 4 +- gcc/config/arm/vec-common.md | 90 +++++++++++--- gcc/config/nvptx/nvptx.h | 3 + gcc/config/rs6000/rs6000-builtin.cc | 7 +- gcc/cp/ChangeLog.omp | 38 ++++++ gcc/cp/parser.cc | 178 ++++++++++++++++++++------- gcc/cp/pt.cc | 13 +- gcc/cp/semantics.cc | 19 ++- gcc/cselib.cc | 70 +++++++++++ gcc/cselib.h | 1 + gcc/dse.cc | 7 +- gcc/fortran/ChangeLog.omp | 11 ++ gcc/fortran/trans-openmp.cc | 12 +- gcc/gimplify.cc | 107 +++++++++++----- gcc/lto-streamer-out.cc | 3 + gcc/omp-expand.cc | 43 ++++--- gcc/omp-general.cc | 12 +- gcc/omp-low.cc | 118 +++++++++--------- gcc/postreload.cc | 15 +-- gcc/testsuite/ChangeLog | 8 ++ gcc/testsuite/ChangeLog.omp | 13 ++ gcc/testsuite/c-c++-common/gomp/doacross-2.c | 18 ++- gcc/testsuite/c-c++-common/gomp/doacross-5.c | 94 ++++++++++++++ gcc/testsuite/c-c++-common/gomp/doacross-6.c | 74 +++++++++++ gcc/testsuite/c-c++-common/gomp/nesting-2.c | 11 +- gcc/testsuite/c-c++-common/gomp/ordered-3.c | 44 +++++-- gcc/testsuite/c-c++-common/gomp/sink-3.c | 2 +- gcc/testsuite/g++.target/powerpc/pr101322.C | 17 +++ gcc/testsuite/gfortran.dg/gomp/nesting-2.f90 | 4 +- gcc/tree-core.h | 14 ++- gcc/tree-nested.cc | 2 + gcc/tree-pretty-print.cc | 68 ++++++---- gcc/tree-streamer-in.cc | 5 + gcc/tree-streamer-out.cc | 4 + gcc/tree-vect-loop.cc | 3 +- gcc/tree-vect-slp-patterns.cc | 4 +- gcc/tree-vect-slp.cc | 4 +- gcc/tree.cc | 2 + gcc/tree.h | 14 ++- 51 files changed, 1213 insertions(+), 338 deletions(-) create mode 100644 gcc/testsuite/c-c++-common/gomp/doacross-5.c create mode 100644 gcc/testsuite/c-c++-common/gomp/doacross-6.c create mode 100644 gcc/testsuite/g++.target/powerpc/pr101322.C