diff options
author | Jonathan Peyton <jonathan.l.peyton@intel.com> | 2017-08-17 19:09:28 +0000 |
---|---|---|
committer | Jonathan Peyton <jonathan.l.peyton@intel.com> | 2017-08-17 19:09:28 +0000 |
commit | d4daf4540ae11e14c79add3a1e815c29a46f6750 (patch) | |
tree | 9076fe0c9f91e3bfaa6e3d0db2214695879b2876 /openmp/runtime/src/kmp_threadprivate.cpp | |
parent | df1e59b6406fc369556eefb06638daf6976063a7 (diff) | |
download | bcm5719-llvm-d4daf4540ae11e14c79add3a1e815c29a46f6750.tar.gz bcm5719-llvm-d4daf4540ae11e14c79add3a1e815c29a46f6750.zip |
Remove BUILD_TV
Cleanup code to remove BUILD_TV and unused code bracketed by it.
Patch by Terry Wilmarth
Differential Revision: https://reviews.llvm.org/D36011
llvm-svn: 311114
Diffstat (limited to 'openmp/runtime/src/kmp_threadprivate.cpp')
-rw-r--r-- | openmp/runtime/src/kmp_threadprivate.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/openmp/runtime/src/kmp_threadprivate.cpp b/openmp/runtime/src/kmp_threadprivate.cpp index b1faf1c9a66..caa00eaa3c6 100644 --- a/openmp/runtime/src/kmp_threadprivate.cpp +++ b/openmp/runtime/src/kmp_threadprivate.cpp @@ -445,10 +445,6 @@ struct private_common *kmp_threadprivate_insert(int gtid, void *pc_addr, tn->link = __kmp_threads[gtid]->th.th_pri_head; __kmp_threads[gtid]->th.th_pri_head = tn; -#ifdef BUILD_TV - __kmp_tv_threadprivate_store(__kmp_threads[gtid], tn->gbl_addr, tn->par_addr); -#endif - if ((__kmp_foreign_tp) ? (KMP_INITIAL_GTID(gtid)) : (KMP_UBER_GTID(gtid))) return tn; |