diff options
author | Rich Felker <dalias@aerifal.cx> | 2014-07-27 21:59:58 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2014-07-27 21:59:58 -0400 |
commit | c0284b372ca26fe8ea15bb76395c8bff2c444ba9 (patch) | |
tree | 19c8d7f56e5da1cd70c0a0afb3d8db05af37adf8 /arch/or1k | |
parent | 90e51e45f57eb0e1564b3610b9bbd768215e5d6d (diff) | |
download | musl-c0284b372ca26fe8ea15bb76395c8bff2c444ba9.tar.gz musl-c0284b372ca26fe8ea15bb76395c8bff2c444ba9.tar.xz musl-c0284b372ca26fe8ea15bb76395c8bff2c444ba9.zip |
remove unused a_cas_l from or1k atomic.h
this follows the same logic as in the previous commit for other archs.
Diffstat (limited to 'arch/or1k')
-rw-r--r-- | arch/or1k/atomic.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/arch/or1k/atomic.h b/arch/or1k/atomic.h index 10f75cbe..5b0411b0 100644 --- a/arch/or1k/atomic.h +++ b/arch/or1k/atomic.h @@ -41,11 +41,6 @@ static inline void *a_cas_p(volatile void *p, void *t, void *s) return (void *)a_cas(p, (int)t, (int)s); } -static inline long a_cas_l(volatile void *p, long t, long s) -{ - return a_cas(p, t, s); -} - static inline int a_swap(volatile int *x, int v) { int old; |