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

Use ARM macro "__arm__" instead of "ARM_ASM"

This commit is contained in:
gizmo98 2015-10-08 21:07:51 +02:00 committed by Sergey Lipskiy
parent ae3da6cc0a
commit aca3a53ac0

View File

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