1
0
mirror of https://github.com/blawar/GLideN64.git synced 2024-07-02 09:03:37 +00:00

Fix "Error: selected processor does not support ARM mode `rev16 r3,r3'"

This commit is contained in:
Sergey Lipskiy 2015-10-10 14:39:50 +06:00
parent 7303ce4286
commit a978fa83ba

View File

@ -164,7 +164,7 @@ inline u16 swapword( u16 value )
xchg ah, al
}
#else // WIN32_ASM
#ifdef __arm__
#ifdef ARM_ASM
asm("rev16 %0, %0" : "+r"(value)::);
return value;
#else