aboutsummaryrefslogtreecommitdiff
path: root/libgomp
diff options
context:
space:
mode:
authorGCC Administrator <gccadmin@gcc.gnu.org>2021-11-19 00:16:34 +0000
committerGCC Administrator <gccadmin@gcc.gnu.org>2021-11-19 00:16:34 +0000
commit483092d3d996c52a16519261ecf4236ab1a2d99c (patch)
tree86b22a69b9c88f22bcbec52d38f8e941f4146b83 /libgomp
parentd6ec661e3931773e2f571ed4f6dd8b0402d8687d (diff)
downloadgcc-483092d3d996c52a16519261ecf4236ab1a2d99c.zip
gcc-483092d3d996c52a16519261ecf4236ab1a2d99c.tar.gz
gcc-483092d3d996c52a16519261ecf4236ab1a2d99c.tar.bz2
Daily bump.
Diffstat (limited to 'libgomp')
-rw-r--r--libgomp/ChangeLog24
1 files changed, 24 insertions, 0 deletions
diff --git a/libgomp/ChangeLog b/libgomp/ChangeLog
index b3b7ec5..b5bacda 100644
--- a/libgomp/ChangeLog
+++ b/libgomp/ChangeLog
@@ -1,3 +1,27 @@
+2021-11-18 David Edelsohn <dje.gcc@gmail.com>
+
+ * alloc.c (gomp_aligned_alloc): Fix typo.
+
+2021-11-18 Jakub Jelinek <jakub@redhat.com>
+
+ PR libgomp/102838
+ * libgomp.h (GOMP_USE_ALIGNED_WORK_SHARES): Define if
+ GOMP_HAVE_EFFICIENT_ALIGNED_ALLOC is defined and __AMDGCN__ is not.
+ (struct gomp_work_share): Use GOMP_USE_ALIGNED_WORK_SHARES instead of
+ GOMP_HAVE_EFFICIENT_ALIGNED_ALLOC.
+ * work.c (alloc_work_share, gomp_work_share_start): Likewise.
+ * team.c (gomp_new_team): If GOMP_USE_ALIGNED_WORK_SHARES, use
+ gomp_aligned_alloc instead of team_malloc.
+
+2021-11-18 Jakub Jelinek <jakub@redhat.com>
+
+ PR libgomp/102838
+ * alloc.c (gomp_aligned_alloc): Prefer _aligned_alloc over
+ memalign over posix_memalign over aligned_alloc over fallback
+ with malloc instead of aligned_alloc over _aligned_alloc over
+ posix_memalign over memalign over fallback with malloc. For
+ aligned_alloc, round up size up to multiple of al.
+
2021-11-16 Jakub Jelinek <jakub@redhat.com>
* libgomp.texi (OpenMP 5.1): Mark thread_limit clause to target