Skip to content

Commit f2ee0b2

Browse files
Vadim Paretsky (Intel Americas Inc)tstellar
authored andcommitted
[OpenMP] Fix extra parenthesis in kmp_os.h
Differential Revision: https://reviews.llvm.org/D143940 (cherry picked from commit 8c74def)
1 parent cd35858 commit f2ee0b2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

openmp/runtime/src/kmp_os.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -610,7 +610,7 @@ inline kmp_int32 __kmp_compare_and_store_ptr(void *volatile *p, void *cv,
610610
#define KMP_XCHG_FIXED8(p, v) \
611611
_InterlockedExchange8((volatile kmp_int8 *)(p), (kmp_int8)(v));
612612
#define KMP_XCHG_FIXED16(p, v) _InterlockedExchange16((p), (v));
613-
#define KMP_XCHG_REAL64(p, v) __kmp_xchg_real64((p), (v)));
613+
#define KMP_XCHG_REAL64(p, v) __kmp_xchg_real64((p), (v));
614614

615615
inline kmp_real64 __kmp_xchg_real64(volatile kmp_real64 *p, kmp_real64 v) {
616616
kmp_int64 tmp = _InterlockedExchange64((volatile kmp_int64 *)p, *(kmp_int64

0 commit comments

Comments
 (0)