Bug 836486: Part 2 - turn on Ion Monkey for ARMv6 (r=jbramley)

This commit is contained in:
Marty Rosenberg 2013-03-28 13:51:23 -04:00
parent 960e7fb728
commit 50b3d19917

View File

@ -2390,9 +2390,13 @@ TypeInferenceSupported()
#endif
#if WTF_ARM_ARCH_VERSION == 6
#ifdef JS_ION
return js::ion::hasVFP();
#else
// If building for ARMv6 targets, we can't be guaranteed an FPU,
// so we hardcode TI off for consistency (see bug 793740).
return false;
#endif
#endif
return true;