Skip to content
This repository was archived by the owner on Sep 30, 2022. It is now read-only.

Commit 55f23bc

Browse files
authored
Merge pull request #1344 from ICLDisco/ppc64
Fixes opal_atomic_ll_64.
2 parents bdf9f95 + a6c5219 commit 55f23bc

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
@@ -236,7 +236,7 @@ static inline int64_t opal_atomic_ll_64(volatile int64_t *addr)
236236
__asm__ __volatile__ ("ldarx %0, 0, %1 \n\t"
237237
: "=&r" (ret)
238238
: "r" (addr)
239-
:);
239+
);
240240
return ret;
241241
}
242242

0 commit comments

Comments
 (0)