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

Commit 3b37cdc

Browse files
committed
asm/powerpc: Fix empty colon list in asm for XL compiler on power
Thanks to Paul Hargrove for reporting the problem, and submitting patch. * https://www.open-mpi.org/community/lists/devel/2016/05/18886.php (cherry picked from commit 788cf1a)
1 parent f16374b commit 3b37cdc

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
@@ -147,7 +147,7 @@ static inline int32_t opal_atomic_ll_32 (volatile int32_t *addr)
147147
__asm__ __volatile__ ("lwarx %0, 0, %1 \n\t"
148148
: "=&r" (ret)
149149
: "r" (addr)
150-
:);
150+
);
151151
return ret;
152152
}
153153

0 commit comments

Comments
 (0)