Follow-up for bug 542133: fix ARMv5 bustage

--HG--
extra : convert_revision : 5a37374d04fea35b0167d057310aee6d3cadca16
This commit is contained in:
Nicholas Nethercote 2010-02-17 14:53:33 +11:00
parent c4b4c765a4
commit 33d5dd6013
2 changed files with 2 additions and 2 deletions

View File

@ -94,7 +94,7 @@ namespace nanojit
#if defined(NANOJIT_ARM)
//NanoStaticAssert(NJ_COMPILER_ARM_ARCH >= 5 && NJ_COMPILER_ARM_ARCH <= 7);
NanoStaticAssert(NJ_COMPILER_ARM_ARCH >= 5 && NJ_COMPILER_ARM_ARCH <= 7);
arm_arch = NJ_COMPILER_ARM_ARCH;
arm_vfp = (arm_arch >= 7);

View File

@ -87,7 +87,7 @@
defined(__ARM_ARCH_5E__) || \
defined(__ARM_ARCH_5TE__)
#define NJ_COMPILER_ARM_ARCH 5;
#define NJ_COMPILER_ARM_ARCH 5
// Visual C has its own mojo
#elif defined(_MSC_VER) && defined(_M_ARM)