[Openmp-commits] [PATCH] D29638: Fix for bug https://llvm.org/bugs/show_bug.cgi?id=30889

Phabricator via Phabricator via Openmp-commits openmp-commits at lists.llvm.org
Tue Mar 28 06:48:12 PDT 2017


This revision was automatically updated to reflect the committed changes.
Closed by commit rL298915: Fix for bug https://llvm.org/bugs/show_bug.cgi?id=30889 (authored by achurbanov).

Changed prior to commit:
  https://reviews.llvm.org/D29638?vs=87420&id=93234#toc

Repository:
  rL LLVM

https://reviews.llvm.org/D29638

Files:
  openmp/trunk/runtime/src/kmp_runtime.cpp


Index: openmp/trunk/runtime/src/kmp_runtime.cpp
===================================================================
--- openmp/trunk/runtime/src/kmp_runtime.cpp
+++ openmp/trunk/runtime/src/kmp_runtime.cpp
@@ -2284,7 +2284,7 @@
 #endif
 
 #if KMP_DEBUG
-    if ( __kmp_tasking_mode != tskm_immediate_exec ) {
+    if (__kmp_tasking_mode != tskm_immediate_exec && !exit_teams) {
         KA_TRACE( 20, ( "__kmp_join_call: T#%d, old team = %p old task_team = %p, th_task_team = %p\n",
                          __kmp_gtid_from_thread( master_th ), team,
                          team->t.t_task_team[master_th->th.th_task_state], master_th->th.th_task_team) );


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D29638.93234.patch
Type: text/x-patch
Size: 659 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/openmp-commits/attachments/20170328/9170e5e4/attachment.bin>


More information about the Openmp-commits mailing list