[Openmp-commits] [openmp] r242043 - fixed typo in debug assertion reported by John Mellor-Crummey
Andrey Churbanov
Andrey.Churbanov at intel.com
Mon Jul 13 10:52:41 PDT 2015
Author: achurbanov
Date: Mon Jul 13 12:52:41 2015
New Revision: 242043
URL: http://llvm.org/viewvc/llvm-project?rev=242043&view=rev
Log:
fixed typo in debug assertion reported by John Mellor-Crummey
Modified:
openmp/trunk/runtime/src/kmp_dispatch.cpp
Modified: openmp/trunk/runtime/src/kmp_dispatch.cpp
URL: http://llvm.org/viewvc/llvm-project/openmp/trunk/runtime/src/kmp_dispatch.cpp?rev=242043&r1=242042&r2=242043&view=diff
==============================================================================
--- openmp/trunk/runtime/src/kmp_dispatch.cpp (original)
+++ openmp/trunk/runtime/src/kmp_dispatch.cpp Mon Jul 13 12:52:41 2015
@@ -1389,7 +1389,7 @@ __kmp_dispatch_next(
kmp_info_t * th = __kmp_threads[ gtid ];
kmp_team_t * team = th -> th.th_team;
- KMP_DEBUG_ASSERT( p_last && p_lb && p_ub && p_st ); // AC: these cannot be NULL
+ KMP_DEBUG_ASSERT( p_lb && p_ub && p_st ); // AC: these cannot be NULL
#ifdef KMP_DEBUG
{
const char * buff;
More information about the Openmp-commits
mailing list