Bug 1046016 - IonMonkey (ARM): Correct the detection of the number of floating point registers. r=mjrosenb

This commit is contained in:
Douglas Crosher 2014-07-30 17:13:44 +10:00
parent 306c62a17c
commit 22bcb4ede2

View File

@ -253,7 +253,7 @@ bool HasVFP()
bool Has32DP()
{
return !(GetARMFlags() & HWCAP_VFPv3D16 && !(GetARMFlags() & HWCAP_NEON));
return (GetARMFlags() & HWCAP_VFPv3) && !(GetARMFlags() & HWCAP_VFPv3D16);
}
bool UseConvReg()
{