[Openmp-commits] [openmp] r335138 - minor: fixed typo in debug print
Andrey Churbanov via Openmp-commits
openmp-commits at lists.llvm.org
Wed Jun 20 08:54:12 PDT 2018
Author: achurbanov
Date: Wed Jun 20 08:54:11 2018
New Revision: 335138
URL: http://llvm.org/viewvc/llvm-project?rev=335138&view=rev
Log:
minor: fixed typo in debug print
Modified:
openmp/trunk/runtime/src/kmp_gsupport.cpp
Modified: openmp/trunk/runtime/src/kmp_gsupport.cpp
URL: http://llvm.org/viewvc/llvm-project/openmp/trunk/runtime/src/kmp_gsupport.cpp?rev=335138&r1=335137&r2=335138&view=diff
==============================================================================
--- openmp/trunk/runtime/src/kmp_gsupport.cpp (original)
+++ openmp/trunk/runtime/src/kmp_gsupport.cpp Wed Jun 20 08:54:11 2018
@@ -108,7 +108,7 @@ void KMP_EXPAND_NAME(KMP_API_NAME_GOMP_A
void KMP_EXPAND_NAME(KMP_API_NAME_GOMP_ATOMIC_END)(void) {
int gtid = __kmp_get_gtid();
- KA_TRACE(20, ("GOMP_atomic_start: T#%d\n", gtid));
+ KA_TRACE(20, ("GOMP_atomic_end: T#%d\n", gtid));
__kmp_release_atomic_lock(&__kmp_atomic_lock, gtid);
}
More information about the Openmp-commits
mailing list