This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch devel/omp/gcc-15 in repository gcc.
from fbde111a346 Merge commit 'c153150b8a05878191de2ee16c0cce7d526f3c46' into HEAD adds 156cc1c66bc Daily bump. adds 5ef8bbce144 AVR: target/120441 - Fix f7_exp for |x| ≥ 512. adds a0e365b7361 AVR: target/120442 - Support f7_fdim / fdiml in LibF7. adds ae1c59c8de4 libstdc++: Fix vector(from_range_t, R&&) for exceptions [PR120367] adds c204037dad8 libstdc++: Fix PSTL test iterators adds 9933a963a58 doc: Fix typo in description of nonstring attribute adds c2b90bf1343 Fix IPA-SRA issue with reverse SSO on specific pattern adds 772dc2841ca Daily bump. adds c38760cdb2a libgomp.fortran/metadirective-1.f90: Expect 'error:' for nv [...] adds 4276b3884a3 Daily bump. adds d79b3dc85d2 aarch64: Enable newly implemented features for FUJITSU-MONAKA adds f54d6c1f90c Daily bump. adds 9fa1f93eb7e testsuite: Add testcase for GCC 13 branch s390 bug [PR120480] adds b368dd5de53 OpenMP: Fix ICE in metadirective recovery after error [PR120180] adds d67a38ca082 OpenMP: Fix ICE and other issues in C/C++ metadirective err [...] adds 1d3b863c208 Daily bump. adds d8e7a2dbe73 Type mismatch for passed external function adds 41dee7da088 Fortran: Fix c_associated argument checks. adds 512a41fae40 Daily bump. adds 48d6f5dbb0e libstdc++: Fix tuple/pair confusion with std::erase_if(flat [...] adds 771fcb9fe9b libstdc++: Compare keys and values separately in flat_map:: [...] adds 9e734259dc4 Daily bump. adds 4856affe9e0 Fortran: Adjust handling of optional comma in FORMAT. adds 21e0a742e7b Fortran: Fix handling of parsed format strings. new 3f67be6a456 Merge branch 'releases/gcc-15' into devel/omp/gcc-15
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: gcc/ChangeLog | 23 ++++ gcc/DATESTAMP | 2 +- gcc/c/ChangeLog | 26 +++++ gcc/c/c-parser.cc | 89 +++++++++++---- gcc/config/aarch64/aarch64-cores.def | 2 +- gcc/cp/ChangeLog | 26 +++++ gcc/cp/parser.cc | 16 +-- gcc/doc/extend.texi | 2 +- gcc/fortran/ChangeLog | 25 +++++ gcc/fortran/check.cc | 125 +++++++++++++++------ gcc/fortran/interface.cc | 9 +- gcc/fortran/io.cc | 6 +- gcc/fortran/misc.cc | 3 + gcc/ipa-sra.cc | 6 + gcc/testsuite/ChangeLog | 72 ++++++++++++ .../c-c++-common/gomp/declare-variant-2.c | 13 +-- .../gomp/metadirective-error-recovery.c | 20 ++++ gcc/testsuite/c-c++-common/gomp/pr120180.c | 22 ++++ .../i386/pr49927.c => gcc.dg/pr120480.c} | 6 +- gcc/testsuite/gfortran.dg/c_f_pointer_tests_6.f90 | 2 +- .../gfortran.dg/comma_format_extension_1.f | 2 +- .../gfortran.dg/comma_format_extension_3.f | 2 +- gcc/testsuite/gfortran.dg/continuation_13.f90 | 2 +- gcc/testsuite/gfortran.dg/interface_62.f90 | 39 +++++++ gcc/testsuite/gfortran.dg/pr119856.f90 | 15 +++ gcc/testsuite/gfortran.dg/pr120049_2.f90 | 62 ++++++++++ gcc/testsuite/gfortran.dg/pr120049_a.f90 | 7 +- gcc/testsuite/gfortran.dg/pr120049_b.f90 | 2 - gcc/testsuite/gnat.dg/sso19.adb | 13 +++ gcc/testsuite/gnat.dg/sso19_pkg.adb | 13 +++ gcc/testsuite/gnat.dg/sso19_pkg.ads | 24 ++++ gcc/tree.h | 2 +- libgcc/config/avr/libf7/ChangeLog | 21 ++++ libgcc/config/avr/libf7/f7-renames.h | 1 + libgcc/config/avr/libf7/f7-wraps.h | 14 ++- libgcc/config/avr/libf7/f7renames.sh | 12 +- libgcc/config/avr/libf7/libf7-common.mk | 6 +- libgcc/config/avr/libf7/libf7.c | 19 +++- libgcc/config/avr/libf7/libf7.h | 1 + libgfortran/io/format.c | 10 +- libgomp/ChangeLog | 18 +++ .../testsuite/libgomp.fortran/metadirective-1.f90 | 9 +- libstdc++-v3/ChangeLog | 44 ++++++++ libstdc++-v3/include/bits/stl_vector.h | 3 +- libstdc++-v3/include/std/flat_map | 10 +- libstdc++-v3/testsuite/23_containers/flat_map/1.cc | 3 +- .../testsuite/23_containers/flat_multimap/1.cc | 3 +- .../23_containers/vector/cons/from_range.cc | 22 ++++ libstdc++-v3/testsuite/util/pstl/test_utils.h | 6 +- 49 files changed, 763 insertions(+), 117 deletions(-) create mode 100644 gcc/testsuite/c-c++-common/gomp/metadirective-error-recovery.c create mode 100644 gcc/testsuite/c-c++-common/gomp/pr120180.c copy gcc/testsuite/{gcc.target/i386/pr49927.c => gcc.dg/pr120480.c} (51%) create mode 100644 gcc/testsuite/gfortran.dg/interface_62.f90 create mode 100644 gcc/testsuite/gfortran.dg/pr119856.f90 create mode 100644 gcc/testsuite/gfortran.dg/pr120049_2.f90 create mode 100644 gcc/testsuite/gnat.dg/sso19.adb create mode 100644 gcc/testsuite/gnat.dg/sso19_pkg.adb create mode 100644 gcc/testsuite/gnat.dg/sso19_pkg.ads