1
1

* mention to the friendly compiler that we are going to stomp on ebx and it

should probably deal with that fact already.

This commit was SVN r5463.
Этот коммит содержится в:
Brian Barrett 2005-04-20 03:30:12 +00:00
родитель 8b69a532b7
Коммит 776d3c02c9

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

@ -132,7 +132,7 @@ static inline int ompi_atomic_cmpset_64(volatile int64_t *addr,
: "=qm"(ret)
: "D"(addr), "a"(ll_low(oldval)), "d"(ll_high(oldval)),
"r"(ll_low(newval)), "c"(ll_high(newval))
: "cc", "memory");
: "cc", "memory", "ebx");
return (int) ret;
}