From 776d3c02c9d0a75644ebe6a8fa4b2014e2d3a175 Mon Sep 17 00:00:00 2001 From: Brian Barrett Date: Wed, 20 Apr 2005 03:30:12 +0000 Subject: [PATCH] * 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. --- src/include/sys/ia32/atomic.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/include/sys/ia32/atomic.h b/src/include/sys/ia32/atomic.h index 7bea2287c0..a75974cee8 100644 --- a/src/include/sys/ia32/atomic.h +++ b/src/include/sys/ia32/atomic.h @@ -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; }