MIPS: detect mips32r6 and disable mips32r1 code

Change-Id: Id1325c789a990c9a8704e84e99a22d580303eb8a
This commit is contained in:
Djordje Pesut 2014-08-08 17:08:06 +02:00
parent bb07022b66
commit b7e5a5c451

View File

@ -60,7 +60,7 @@ extern "C" {
#define WEBP_USE_NEON #define WEBP_USE_NEON
#endif #endif
#if defined(__mips__) && !defined(__mips64) #if defined(__mips__) && !defined(__mips64) && (__mips_isa_rev < 6)
#define WEBP_USE_MIPS32 #define WEBP_USE_MIPS32
#endif #endif