1
1

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
Этот коммит содержится в:
George Bosilca 2016-08-27 12:43:48 -04:00
родитель d33204b0dc
Коммит a6d515ba9e

Просмотреть файл

@ -243,7 +243,7 @@ static inline int64_t opal_atomic_ll_64(volatile int64_t *addr)
__asm__ __volatile__ ("ldarx %0, 0, %1 \n\t"
: "=&r" (ret)
: "r" (addr)
:);
);
return ret;
}