MIPS: detect mips32r6 and disable mips32r1 code

(cherry picked from commit b7e5a5c451)

Change-Id: Id1325c789a990c9a8704e84e99a22d580303eb8a
This commit is contained in:
Djordje Pesut 2014-08-08 17:08:06 +02:00 committed by James Zern
parent 245c4a6737
commit 29a9db1f7c

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