aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMohame Atef <mohamedatef1698@gmail.com>2022-06-29 04:29:50 +0200
committerMohame Atef <mohamedatef1698@gmail.com>2022-06-29 04:40:23 +0200
commitbf7b85b96f3e0c47242a2993c1172a0317aebab5 (patch)
treecef029c85868a93044b5936f425c0221f2e5fc78
parentd098c1d7c0c6d9afd1e5cfaebb2624a07b489a25 (diff)
libgompd: Fix Access Bugsdevel/omp/ompd
libgomp/ChangeLog 2022-06-29 Mohamed Atef <mohamedatef1698@gmail.com> * ompd-helper.c (gompd_is_final, gompd_is_implicit, gompd_get_team_size): Change is_ptr from 1 to 0 in ACCESS_VALUE. Signed-off-by: Mohamed Atef <mohamedatef1698@gmail.com>
-rw-r--r--libgomp/ompd-helper.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libgomp/ompd-helper.c b/libgomp/ompd-helper.c
index 9762b48dff8..ca05ed50c18 100644
--- a/libgomp/ompd-helper.c
+++ b/libgomp/ompd-helper.c
@@ -540,7 +540,7 @@ gompd_is_final (ompd_task_handle_t *task_handle, ompd_word_t *final_task)
ompd_rc_t ret;
/* gomp_task->final_task. */
ACCESS_VALUE (context, NULL, "gompd_access_gomp_task_final_task", temp_offset,
- 1, ret, symbol_addr, temp_sym_addr, temp_addr);
+ 0, ret, symbol_addr, temp_sym_addr, temp_addr);
DEREFERENCE (context, NULL, symbol_addr, target_sizes.sizeof_char, 1,
res, ret, 0);
*final_task = res;
@@ -565,7 +565,7 @@ gompd_is_implicit (ompd_task_handle_t *task_handle, ompd_word_t *task_kind)
ompd_address_space_context_t *context = task_handle->ah->context;
ompd_rc_t ret;
/* gomp_task->kind. */
- ACCESS_VALUE (context, NULL, "gompd_access_gomp_task_kind", temp_offset, 1,
+ ACCESS_VALUE (context, NULL, "gompd_access_gomp_task_kind", temp_offset, 0,
ret, symbol_addr, temp_sym_addr, temp_addr);
DEREFERENCE (context, NULL, symbol_addr, target_sizes.sizeof_int, 1, res,
ret, 0);
@@ -597,7 +597,7 @@ gompd_get_team_size (ompd_parallel_handle_t *parallel_handle,
ompd_rc_t ret;
/* gomp_team->nthreads. */
ACCESS_VALUE (context, NULL, "gompd_access_gomp_team_nthreads", temp_offset,
- 1, ret, symbol_addr, temp_sym_addr, temp_addr);
+ 0, ret, symbol_addr, temp_sym_addr, temp_addr);
DEREFERENCE (context, NULL, symbol_addr, target_sizes.sizeof_int, 1,
res, ret, 0);
*nthreads = res;