diff options
author | Jonas Hahnfeld <hahnjo@hahnjo.de> | 2017-11-03 18:28:25 +0000 |
---|---|---|
committer | Jonas Hahnfeld <hahnjo@hahnjo.de> | 2017-11-03 18:28:25 +0000 |
commit | b71424fda5d8375e47946775b6687f15ec17939a (patch) | |
tree | 97c06f1e400a3d96787e8fdb98fc77fbe216b6e5 /openmp/runtime/src/ompt-specific.cpp | |
parent | f0a1c65fb007d727ff93bd8ff9c438f689cde77d (diff) | |
download | bcm5719-llvm-b71424fda5d8375e47946775b6687f15ec17939a.tar.gz bcm5719-llvm-b71424fda5d8375e47946775b6687f15ec17939a.zip |
Revert "Rename fields of ompt_frame_t"
This reverts commit r317338 which discarded some recent commits.
llvm-svn: 317347
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 9631c2bc113..bdf6bd18580 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.enter_frame = NULL; - lwt->ompt_task_info.frame.exit_frame = NULL; + lwt->ompt_task_info.frame.reenter_runtime_frame = NULL; + lwt->ompt_task_info.frame.exit_runtime_frame = NULL; lwt->ompt_task_info.scheduling_parent = NULL; lwt->ompt_task_info.deps = NULL; lwt->ompt_task_info.ndeps = 0; |