From: Rich Felker Date: Mon, 28 Jul 2014 01:59:58 +0000 (-0400) Subject: remove unused a_cas_l from or1k atomic.h X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;ds=sidebyside;h=c0284b372ca26fe8ea15bb76395c8bff2c444ba9;p=musl remove unused a_cas_l from or1k atomic.h this follows the same logic as in the previous commit for other archs. --- 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;