diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2019-08-20 20:52:04 +0000 |
---|---|---|
committer | Dimitry Andric <dim@FreeBSD.org> | 2019-08-20 20:52:04 +0000 |
commit | 1756886afc900127720de68088f9adff3108ef61 (patch) | |
tree | d4c46dc43cbf2f632d3c575a6d01716370a7b45b /runtime/src/kmp_debugger.cpp | |
parent | 4254a3821b2072ba01f8f7e3347ac862d324babc (diff) |
vendor/llvm-openmp/openmp-trunk-r366426vendor/llvm-openmp/openmp-release_900-r372316vendor/llvm-openmp/openmp-release_90-r371301vendor/llvm-openmp/openmp-release_90-r370514vendor/llvm-openmp/openmp-release_90-r369369vendor/llvm-openmp-90
Diffstat (limited to 'runtime/src/kmp_debugger.cpp')
-rw-r--r-- | runtime/src/kmp_debugger.cpp | 13 |
1 files changed, 3 insertions, 10 deletions
diff --git a/runtime/src/kmp_debugger.cpp b/runtime/src/kmp_debugger.cpp index 8de2cbaedba92..490300f9b2077 100644 --- a/runtime/src/kmp_debugger.cpp +++ b/runtime/src/kmp_debugger.cpp @@ -7,10 +7,9 @@ //===----------------------------------------------------------------------===// // -// The LLVM Compiler Infrastructure -// -// This file is dual licensed under the MIT and the University of Illinois Open -// Source Licenses. See LICENSE.txt for details. +// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. +// See https://llvm.org/LICENSE.txt for license information. +// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// @@ -102,13 +101,11 @@ kmp_omp_struct_info_t __kmp_omp_debug_struct_info = { offset_and_size_of(kmp_base_info_t, th_bar), offset_and_size_of(kmp_bstate_t, b_worker_arrived), -#if OMP_40_ENABLED // teams information offset_and_size_of(kmp_base_info_t, th_teams_microtask), offset_and_size_of(kmp_base_info_t, th_teams_level), offset_and_size_of(kmp_teams_size_t, nteams), offset_and_size_of(kmp_teams_size_t, nth), -#endif // kmp_desc structure (for info field above) sizeof(kmp_desc_base_t), @@ -134,9 +131,7 @@ kmp_omp_struct_info_t __kmp_omp_debug_struct_info = { offset_and_size_of(kmp_base_team_t, t_pkfn), offset_and_size_of(kmp_base_team_t, t_task_team), offset_and_size_of(kmp_base_team_t, t_implicit_task_taskdata), -#if OMP_40_ENABLED offset_and_size_of(kmp_base_team_t, t_cancel_request), -#endif offset_and_size_of(kmp_base_team_t, t_bar), offset_and_size_of(kmp_balign_team_t, b_master_arrived), offset_and_size_of(kmp_balign_team_t, b_team_arrived), @@ -196,7 +191,6 @@ kmp_omp_struct_info_t __kmp_omp_debug_struct_info = { offset_and_size_of(kmp_taskdata_t, td_taskwait_counter), offset_and_size_of(kmp_taskdata_t, td_taskwait_thread), -#if OMP_40_ENABLED offset_and_size_of(kmp_taskdata_t, td_taskgroup), offset_and_size_of(kmp_taskgroup_t, count), offset_and_size_of(kmp_taskgroup_t, cancel_request), @@ -208,7 +202,6 @@ kmp_omp_struct_info_t __kmp_omp_debug_struct_info = { offset_and_size_of(kmp_base_depnode_t, task), offset_and_size_of(kmp_base_depnode_t, npredecessors), offset_and_size_of(kmp_base_depnode_t, nrefs), -#endif offset_and_size_of(kmp_task_t, routine), // thread_data_t. |