Fixed bug 1122 (spinlock fails to compile with -march=armv4t)
This commit is contained in:
parent
d4a7019d95
commit
1cbbefce43
1 changed files with 3 additions and 1 deletions
|
@ -62,7 +62,9 @@ SDL_AtomicTryLock(SDL_SpinLock *lock)
|
||||||
#elif HAVE_GCC_ATOMICS || HAVE_GCC_SYNC_LOCK_TEST_AND_SET
|
#elif HAVE_GCC_ATOMICS || HAVE_GCC_SYNC_LOCK_TEST_AND_SET
|
||||||
return (__sync_lock_test_and_set(lock, 1) == 0);
|
return (__sync_lock_test_and_set(lock, 1) == 0);
|
||||||
|
|
||||||
#elif defined(__GNUC__) && defined(__arm__) && (defined(__ARM_ARCH_5__) || defined(__ARM_ARCH_5TE__))
|
#elif defined(__GNUC__) && defined(__arm__) && \
|
||||||
|
(defined(__ARM_ARCH_4__) || defined(__ARM_ARCH_4T__) || \
|
||||||
|
defined(__ARM_ARCH_5__) || defined(__ARM_ARCH_5TE__))
|
||||||
int result;
|
int result;
|
||||||
__asm__ __volatile__ (
|
__asm__ __volatile__ (
|
||||||
"swp %0, %1, [%2]\n"
|
"swp %0, %1, [%2]\n"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue