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

Commit 4169d10

Browse files
committed
Merge pull request #1140 from jjhursey/topic/asm-ppc-fix
asm/powerpc: Fix empty colon list in asm for XL compiler on power
2 parents da4c356 + 3b37cdc commit 4169d10

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)