diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2006-02-01 09:25:33 +0000 |
---|---|---|
committer | Peter S. Mazinger <ps.m@gmx.net> | 2006-02-01 09:25:33 +0000 |
commit | fd56af193eff8ad598d2789e970150d7a363c890 (patch) | |
tree | c5ec50abc7960fcaf509b4b1b3a27e4a9302f345 /libpthread/linuxthreads/sysdeps/sparc/sparc32/pspinlock.c | |
parent | f45706ca6ade259d2cf9397c35b0135991470197 (diff) |
change asm/volatile to __x__
Diffstat (limited to 'libpthread/linuxthreads/sysdeps/sparc/sparc32/pspinlock.c')
-rw-r--r-- | libpthread/linuxthreads/sysdeps/sparc/sparc32/pspinlock.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libpthread/linuxthreads/sysdeps/sparc/sparc32/pspinlock.c b/libpthread/linuxthreads/sysdeps/sparc/sparc32/pspinlock.c index a67dbf901..812c7ff2a 100644 --- a/libpthread/linuxthreads/sysdeps/sparc/sparc32/pspinlock.c +++ b/libpthread/linuxthreads/sysdeps/sparc/sparc32/pspinlock.c @@ -25,7 +25,7 @@ int __pthread_spin_lock (pthread_spinlock_t *lock) { - asm volatile + __asm__ __volatile__ ("1: ldstub [%0], %%g2\n" " orcc %%g2, 0x0, %%g0\n" " bne,a 2f\n" @@ -48,7 +48,7 @@ int __pthread_spin_trylock (pthread_spinlock_t *lock) { int result; - asm volatile + __asm__ __volatile__ ("ldstub [%1], %0" : "=r" (result) : "r" (lock) |