fixed typo in debug assertion reported by John Mellor-Crummey
authorAndrey Churbanov <Andrey.Churbanov@intel.com>
Mon, 13 Jul 2015 17:52:41 +0000 (17:52 +0000)
committerAndrey Churbanov <Andrey.Churbanov@intel.com>
Mon, 13 Jul 2015 17:52:41 +0000 (17:52 +0000)
llvm-svn: 242043

openmp/runtime/src/kmp_dispatch.cpp

index cf72ab4..65abcf7 100644 (file)
@@ -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;