This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from ed34c3bc342 arm: Fix MVE's vcmp vector-scalar patterns [PR107987] new c690f116b64 ada: Add Codepeer Exemption + simplify TO_C code. new f459afaa679 ada: Accessibility code reorganization and bug fixes new d1ab8eddca9 ada: Use larger type for membership test of universal value new a444c05623f ada: Small adjustment to special resolution of membership test new ea588d41f39 ada: Elide the copy in extended returns for nonlimited by-r [...] new 0cb36c85ab0 ada: Fix spurious error in checking of SPARK elaboration new 188965afb10 ada: Suppress warning for specific constant valid condition new 7dc44f280e7 ada: Spurious error on nested call using the prefix notation new 400d9fc1f04 ada: Allow No_Caching on volatile types new 81476bc4f4a OpenMP: omp_get_max_teams, omp_set_num_teams, and omp_{gs}e [...]
The 10 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/ada/accessibility.adb | 2305 ++++++++++++++++++++++ gcc/ada/accessibility.ads | 222 +++ gcc/ada/checks.adb | 113 -- gcc/ada/checks.ads | 10 - gcc/ada/contracts.adb | 32 +- gcc/ada/einfo.ads | 8 +- gcc/ada/exp_aggr.adb | 2 +- gcc/ada/exp_attr.adb | 15 +- gcc/ada/exp_ch3.adb | 469 +++-- gcc/ada/exp_ch4.adb | 442 ++--- gcc/ada/exp_ch5.adb | 1 + gcc/ada/exp_ch6.adb | 109 +- gcc/ada/exp_ch6.ads | 27 +- gcc/ada/exp_ch9.adb | 1 + gcc/ada/exp_disp.adb | 1 + gcc/ada/exp_util.adb | 6 +- gcc/ada/gcc-interface/Make-lang.in | 1 + gcc/ada/gcc-interface/trans.cc | 12 +- gcc/ada/gen_il-fields.ads | 3 +- gcc/ada/gen_il-gen-gen_nodes.adb | 3 +- gcc/ada/gen_il-internals.adb | 2 - gcc/ada/libgnat/i-c.adb | 15 +- gcc/ada/sem_aggr.adb | 2 +- gcc/ada/sem_attr.adb | 133 +- gcc/ada/sem_ch13.adb | 1 + gcc/ada/sem_ch3.adb | 140 ++ gcc/ada/sem_ch4.adb | 65 +- gcc/ada/sem_ch5.adb | 7 +- gcc/ada/sem_ch6.adb | 654 +----- gcc/ada/sem_ch9.adb | 1 + gcc/ada/sem_elab.adb | 24 +- gcc/ada/sem_prag.adb | 49 +- gcc/ada/sem_res.adb | 53 +- gcc/ada/sem_util.adb | 1338 +------------ gcc/ada/sem_util.ads | 141 +- gcc/ada/sem_warn.adb | 41 +- gcc/ada/sinfo.ads | 15 +- gcc/ada/treepr.adb | 5 +- gcc/gimplify.cc | 3 +- gcc/testsuite/c-c++-common/gomp/target-teams-1.c | 2 +- gcc/testsuite/g++.dg/gomp/target-teams-1.C | 2 +- gcc/testsuite/gfortran.dg/gomp/defaultmap-4.f90 | 4 +- gcc/testsuite/gfortran.dg/gomp/defaultmap-5.f90 | 4 +- gcc/testsuite/gfortran.dg/gomp/defaultmap-6.f90 | 2 +- libgomp/config/gcn/icv-device.c | 15 + libgomp/config/nvptx/icv-device.c | 15 + libgomp/icv-device.c | 17 + libgomp/icv.c | 15 - libgomp/libgomp.texi | 7 +- libgomp/plugin/plugin-gcn.c | 14 +- libgomp/target.c | 188 +- libgomp/testsuite/libgomp.c-c++-common/icv-4.c | 2 +- libgomp/testsuite/libgomp.c-c++-common/icv-5.c | 198 +- libgomp/testsuite/libgomp.c-c++-common/icv-6.c | 61 +- libgomp/testsuite/libgomp.c-c++-common/icv-7.c | 83 +- libgomp/testsuite/libgomp.c-c++-common/icv-9.c | 72 + libgomp/testsuite/libgomp.fortran/icv-5.f90 | 226 +++ libgomp/testsuite/libgomp.fortran/icv-6.f90 | 140 ++ 58 files changed, 4565 insertions(+), 2973 deletions(-) create mode 100644 gcc/ada/accessibility.adb create mode 100644 gcc/ada/accessibility.ads create mode 100644 libgomp/testsuite/libgomp.c-c++-common/icv-9.c create mode 100644 libgomp/testsuite/libgomp.fortran/icv-5.f90 create mode 100644 libgomp/testsuite/libgomp.fortran/icv-6.f90