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 fa7e73819ec OpenMP: Document ompx warnings + add Fortran omx warning [P [...] new 1aa03128944 libgomp: Fix up OMP_PROC_BIND handling [PR106894] new de28004fa5f amdgcn: Add support for additional natively supported float [...] adds c1ba36ec779 Fortran: Fix ICE with -fcheck=pointer [PR100136] adds 98fb37efba1 Daily bump. adds 6c08f8edfa1 Daily bump. adds 87da20c6e28 libstdc++: Check for overflow in regex back-reference [PR106607] adds 47f0bd26940 libstdc++: Fix for explicit copy ctors in <thread> and <fut [...] adds 156607e5ae6 Daily bump. adds 3a83d005e5d RTEMS: Add -mvrsave multilibs adds 98fed14662b Daily bump. adds e08dd36f90e tree-optimization/106809 - compile time hog in VN adds 41b4faa130a tree-optimization/106841 - gather and hybrid SLP adds 4ce316ca54c tree-optimization/106860 - fix profile scaling in split_loop new 0010ad7047c 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 | 7 + gcc/ChangeLog.omp | 28 ++++ gcc/DATESTAMP | 2 +- gcc/config/gcn/gcn-builtins.def | 35 ++++ gcc/config/gcn/gcn-protos.h | 1 + gcc/config/gcn/gcn-valu.md | 181 +++++++++++++++++++++ gcc/config/gcn/gcn.cc | 114 ++++++++++++- gcc/config/gcn/gcn.md | 4 +- gcc/config/rs6000/rtems.h | 3 +- gcc/config/rs6000/t-rtems | 5 + gcc/fortran/ChangeLog | 9 + gcc/fortran/trans-expr.cc | 7 +- gcc/testsuite/ChangeLog | 8 + .../isl-ast-gen-user-1.c => g++.dg/opt/pr106860.C} | 6 +- gcc/testsuite/g++.dg/vect/pr106841.cc | 52 ++++++ gcc/testsuite/gcc.dg/torture/pr106809.c | 28 ++++ gcc/testsuite/gfortran.dg/PR100136.f90 | 39 +++++ gcc/tree-ssa-loop-split.cc | 16 +- gcc/tree-ssa-sccvn.cc | 57 ++++--- gcc/tree-vect-slp.cc | 9 + libgomp/ChangeLog.omp | 9 + libgomp/env.c | 8 +- libstdc++-v3/ChangeLog | 26 +++ libstdc++-v3/include/bits/regex_compiler.tcc | 10 +- libstdc++-v3/include/bits/std_thread.h | 8 +- libstdc++-v3/include/std/future | 4 +- .../testsuite/28_regex/basic_regex/106607.cc | 25 +++ libstdc++-v3/testsuite/30_threads/async/106695.cc | 29 ++++ libstdc++-v3/testsuite/30_threads/thread/106695.cc | 21 +++ 29 files changed, 694 insertions(+), 57 deletions(-) copy gcc/testsuite/{gcc.dg/graphite/isl-ast-gen-user-1.c => g++.dg/opt/pr106860.C} (77%) create mode 100644 gcc/testsuite/g++.dg/vect/pr106841.cc create mode 100644 gcc/testsuite/gcc.dg/torture/pr106809.c create mode 100644 gcc/testsuite/gfortran.dg/PR100136.f90 create mode 100644 libstdc++-v3/testsuite/28_regex/basic_regex/106607.cc create mode 100644 libstdc++-v3/testsuite/30_threads/async/106695.cc create mode 100644 libstdc++-v3/testsuite/30_threads/thread/106695.cc