diff options
author | Joachim Protze <protze@itc.rwth-aachen.de> | 2017-11-03 17:08:40 +0000 |
---|---|---|
committer | Joachim Protze <protze@itc.rwth-aachen.de> | 2017-11-03 17:08:40 +0000 |
commit | 741572593f56d054dcd01118960ace51b6f27b71 (patch) | |
tree | 3f4ea0774fa37633a9009e3f3e7e50d15c2ea1f8 /openmp/runtime/src/ompt-specific.cpp | |
parent | 8acdc98271c9efa2303e371b4ebc4b7410a30d9f (diff) | |
download | bcm5719-llvm-741572593f56d054dcd01118960ace51b6f27b71.tar.gz bcm5719-llvm-741572593f56d054dcd01118960ace51b6f27b71.zip |
Rename fields of ompt_frame_t
This is part of the renaming of data types from OpenMP TR4 to TR6
Patch by Simon Convent
Differential Revision: https://reviews.llvm.org/D39326
llvm-svn: 317338
Diffstat (limited to 'openmp/runtime/src/ompt-specific.cpp')
-rw-r--r-- | openmp/runtime/src/ompt-specific.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/openmp/runtime/src/ompt-specific.cpp b/openmp/runtime/src/ompt-specific.cpp index bdf6bd18580..9631c2bc113 100644 --- a/openmp/runtime/src/ompt-specific.cpp +++ b/openmp/runtime/src/ompt-specific.cpp @@ -240,8 +240,8 @@ void __ompt_lw_taskteam_init(ompt_lw_taskteam_t *lwt, kmp_info_t *thr, int gtid, lwt->ompt_team_info.parallel_data = *ompt_pid; lwt->ompt_team_info.master_return_address = codeptr; lwt->ompt_task_info.task_data.value = 0; - lwt->ompt_task_info.frame.reenter_runtime_frame = NULL; - lwt->ompt_task_info.frame.exit_runtime_frame = NULL; + lwt->ompt_task_info.frame.enter_frame = NULL; + lwt->ompt_task_info.frame.exit_frame = NULL; lwt->ompt_task_info.scheduling_parent = NULL; lwt->ompt_task_info.deps = NULL; lwt->ompt_task_info.ndeps = 0; |