diff options
author | GCC Administrator <gccadmin@gcc.gnu.org> | 2021-11-12 00:16:32 +0000 |
---|---|---|
committer | GCC Administrator <gccadmin@gcc.gnu.org> | 2021-11-12 00:16:32 +0000 |
commit | b39265d4fe13e3e8ce5021642e5092e74effb643 (patch) | |
tree | ced524776ff72d1620423d781a5ae4c71208f4ca /libgomp | |
parent | 4a407d358e2896a9ab42364c0b70dfb6f9761d61 (diff) | |
download | gcc-b39265d4fe13e3e8ce5021642e5092e74effb643.tar.gz |
Daily bump.
Diffstat (limited to 'libgomp')
-rw-r--r-- | libgomp/ChangeLog | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/libgomp/ChangeLog b/libgomp/ChangeLog index 3ab37ecbb69..26a8476961a 100644 --- a/libgomp/ChangeLog +++ b/libgomp/ChangeLog @@ -1,3 +1,25 @@ +2021-11-11 Tobias Burnus <tobias@codesourcery.com> + + * testsuite/libgomp.fortran/teams-1.f90: New test. + +2021-11-11 Jakub Jelinek <jakub@redhat.com> + + * libgomp.h (struct gomp_thread): Add num_teams and team_num members. + * team.c (struct gomp_thread_start_data): Likewise. + (gomp_thread_start): Initialize thr->num_teams and thr->team_num. + (gomp_team_start): Initialize start_data->num_teams and + start_data->team_num. Update nthr->num_teams and nthr->team_num. + * teams.c (gomp_num_teams, gomp_team_num): Remove. + (GOMP_teams_reg): Set and restore thr->num_teams and thr->team_num + instead of gomp_num_teams and gomp_team_num. + (omp_get_num_teams): Use thr->num_teams + 1 instead of gomp_num_teams. + (omp_get_team_num): Use thr->team_num instead of gomp_team_num. + * testsuite/libgomp.c/teams-4.c: New test. + +2021-11-11 Jakub Jelinek <jakub@redhat.com> + + * testsuite/libgomp.c-c++-common/teams-1.c: New test. + 2021-11-09 Thomas Schwinge <thomas@codesourcery.com> * env.c (parse_gomp_openacc_dim): Restore parsing. |