diff options
author | Andrey Churbanov <Andrey.Churbanov@intel.com> | 2015-07-13 17:52:41 +0000 |
---|---|---|
committer | Andrey Churbanov <Andrey.Churbanov@intel.com> | 2015-07-13 17:52:41 +0000 |
commit | 9ad5c3a32428f58b31f1edc26d1b67a1dc9b7cf7 (patch) | |
tree | b222ec42f6582c6dd30d52a8e05a5a02eaa8cc44 /openmp/runtime/src | |
parent | a667d1adb7de2b6875a395416afa3d19e407583b (diff) | |
download | bcm5719-llvm-9ad5c3a32428f58b31f1edc26d1b67a1dc9b7cf7.tar.gz bcm5719-llvm-9ad5c3a32428f58b31f1edc26d1b67a1dc9b7cf7.zip |
fixed typo in debug assertion reported by John Mellor-Crummey
llvm-svn: 242043
Diffstat (limited to 'openmp/runtime/src')
-rw-r--r-- | openmp/runtime/src/kmp_dispatch.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openmp/runtime/src/kmp_dispatch.cpp b/openmp/runtime/src/kmp_dispatch.cpp index cf72ab405fd..65abcf7fc43 100644 --- a/openmp/runtime/src/kmp_dispatch.cpp +++ b/openmp/runtime/src/kmp_dispatch.cpp @@ -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; |