mirror of
git://git.musl-libc.org/musl
synced 2025-03-06 20:48:29 +01:00
remove unused a_cas_l from or1k atomic.h
this follows the same logic as in the previous commit for other archs.
This commit is contained in:
parent
90e51e45f5
commit
c0284b372c
1 changed files with 0 additions and 5 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue