summaryrefslogtreecommitdiff
path: root/arch/x32
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2015-05-20 00:17:35 -0400
committerRich Felker <dalias@aerifal.cx>2015-05-20 00:17:35 -0400
commitc648cefb27984db60474ec1747cbfde83c2856d0 (patch)
treec21f84ead60afcc5854eacb5fd82702c875670f9 /arch/x32
parent390f93ef69153bf2087fcf3baa1776ad9a6765ab (diff)
downloadmusl-c648cefb27984db60474ec1747cbfde83c2856d0.tar.gz
fix inconsistency in a_and and a_or argument types on x86[_64]
conceptually, and on other archs, these functions take a pointer to int, but in the i386, x86_64, and x32 versions of atomic.h, they took a pointer to void instead.
Diffstat (limited to 'arch/x32')
-rw-r--r--arch/x32/atomic.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/x32/atomic.h b/arch/x32/atomic.h
index 333098c3..b2014cc0 100644
--- a/arch/x32/atomic.h
+++ b/arch/x32/atomic.h
@@ -47,16 +47,16 @@ static inline int a_cas(volatile int *p, int t, int s)
return t;
}
-static inline void a_or(volatile void *p, int v)
+static inline void a_or(volatile int *p, int v)
{
__asm__( "lock ; or %1, %0"
- : "=m"(*(int *)p) : "r"(v) : "memory" );
+ : "=m"(*p) : "r"(v) : "memory" );
}
-static inline void a_and(volatile void *p, int v)
+static inline void a_and(volatile int *p, int v)
{
__asm__( "lock ; and %1, %0"
- : "=m"(*(int *)p) : "r"(v) : "memory" );
+ : "=m"(*p) : "r"(v) : "memory" );
}
static inline int a_swap(volatile int *x, int v)