Merge "MIPS: detect mips32r6 and disable mips32r1 code"

This commit is contained in:
Djordje Pesut 2014-08-11 05:44:01 -07:00 committed by Gerrit Code Review
commit b564f7c7d5

View File

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