#define a_cas a_cas
static inline int a_cas(volatile int *p, int t, int s)
{
__asm__ __volatile__ (
"cas.l %0, %2, (%1)"
: "+d"(t) : "a"(p), "d"(s) : "memory", "cc");
return t;
}
![]() |
index : grovel | |
| Unnamed repository; edit this file 'description' to name the repository. | External SSH Git service user |
| aboutsummaryrefslogtreecommitdiff |
#define a_cas a_cas
static inline int a_cas(volatile int *p, int t, int s)
{
__asm__ __volatile__ (
"cas.l %0, %2, (%1)"
: "+d"(t) : "a"(p), "d"(s) : "memory", "cc");
return t;
}