Skip to content

Commit a6d515b

Browse files
committed
Fixes opal_atomic_ll_64. Thanks to Paul Hardgrove for
the report and his patch. This is an addition to #1140 and should go in 2.x
1 parent d33204b commit a6d515b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

opal/include/opal/sys/powerpc/atomic.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ static inline int64_t opal_atomic_ll_64(volatile int64_t *addr)
243243
__asm__ __volatile__ ("ldarx %0, 0, %1 \n\t"
244244
: "=&r" (ret)
245245
: "r" (addr)
246-
:);
246+
);
247247
return ret;
248248
}
249249

0 commit comments

Comments
 (0)