Skip to content

Commit da6d038

Browse files
committed
opal/asm: Remove an unused variable
Signed-off-by: Nysal Jan K.A <jnysal@in.ibm.com>
1 parent 5ffde16 commit da6d038

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
@@ -276,7 +276,7 @@ static inline bool opal_atomic_compare_exchange_strong_64 (opal_atomic_int64_t *
276276
#define opal_atomic_sc_64(addr, value, ret) \
277277
do { \
278278
opal_atomic_int64_t *_addr = (addr); \
279-
int64_t _foo, _newval = (int64_t) value; \
279+
int64_t _newval = (int64_t) value; \
280280
int32_t _ret; \
281281
\
282282
__asm__ __volatile__ (" stdcx. %2, 0, %1 \n\t" \

0 commit comments

Comments
 (0)