MFC r274941: The arm PJ4B cpu is armv7 architecture, not v6.

This commit is contained in:
ian 2014-12-27 04:33:35 +00:00
parent ff2ddbadb6
commit aa8c824e74

View File

@ -85,14 +85,14 @@
#endif
#if !defined(ARM_ARCH_6)
#if defined(CPU_ARM1136) || defined(CPU_ARM1176) || defined(CPU_MV_PJ4B)
#if defined(CPU_ARM1136) || defined(CPU_ARM1176)
#define ARM_ARCH_6 1
#else
#define ARM_ARCH_6 0
#endif
#endif
#if defined(CPU_CORTEXA) || defined(CPU_KRAIT)
#if defined(CPU_CORTEXA) || defined(CPU_KRAIT) || defined(CPU_MV_PJ4B)
#define ARM_ARCH_7A 1
#else
#define ARM_ARCH_7A 0