aboutsummaryrefslogtreecommitdiff
path: root/libgomp
diff options
context:
space:
mode:
authorGCC Administrator <gccadmin@gcc.gnu.org>2020-10-21 00:16:36 +0000
committerGCC Administrator <gccadmin@gcc.gnu.org>2020-10-21 00:16:36 +0000
commite2e04288542667307df925f7d0a4b0fa2030f741 (patch)
tree163aabd926cde017c5efb3f901127d21d2a53dc3 /libgomp
parentdeb1365e5cbb9c76b721a41ba53d8e63dc8de9f0 (diff)
downloadgcc-e2e04288542667307df925f7d0a4b0fa2030f741.zip
gcc-e2e04288542667307df925f7d0a4b0fa2030f741.tar.gz
gcc-e2e04288542667307df925f7d0a4b0fa2030f741.tar.bz2
Daily bump.
Diffstat (limited to 'libgomp')
-rw-r--r--libgomp/ChangeLog27
1 files changed, 27 insertions, 0 deletions
diff --git a/libgomp/ChangeLog b/libgomp/ChangeLog
index 34aa326..931df0a 100644
--- a/libgomp/ChangeLog
+++ b/libgomp/ChangeLog
@@ -1,3 +1,30 @@
+2020-10-20 Jakub Jelinek <jakub@redhat.com>
+
+ * target.c (gomp_target_init): Inside of the function, use automatic
+ variables corresponding to num_devices, num_devices_openmp and devices
+ global variables and update the globals only at the end of the
+ function.
+
+2020-10-20 Kwok Cheung Yeung <kcy@codesourcery.com>
+
+ * env.c (gomp_target_offload_var): New.
+ (parse_target_offload): New.
+ (handle_omp_display_env): Print value of OMP_TARGET_OFFLOAD.
+ (initialize_env): Parse OMP_TARGET_OFFLOAD.
+ * libgomp.h (gomp_target_offload_t): New.
+ (gomp_target_offload_var): New.
+ * libgomp.texi (OMP_TARGET_OFFLOAD): New section.
+ * target.c (resolve_device): Generate error if device not found and
+ offloading is mandatory.
+ (gomp_target_fallback): Generate error if offloading is mandatory.
+ (GOMP_target): Add argument in call to gomp_target_fallback.
+ (GOMP_target_ext): Likewise.
+ (gomp_target_data_fallback): Generate error if offloading is mandatory.
+ (GOMP_target_data): Add argument in call to gomp_target_data_fallback.
+ (GOMP_target_data_ext): Likewise.
+ (gomp_target_task_fn): Add argument in call to gomp_target_fallback.
+ (gomp_target_init): Return early if offloading is disabled.
+
2020-10-15 Kwok Cheung Yeung <kcy@codesourcery.com>
* libgomp.texi (omp_get_max_active_levels): Modify description.