mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 1046016 - IonMonkey (ARM): Correct the detection of the number of floating point registers. r=mjrosenb
This commit is contained in:
parent
306c62a17c
commit
22bcb4ede2
@ -253,7 +253,7 @@ bool HasVFP()
|
||||
|
||||
bool Has32DP()
|
||||
{
|
||||
return !(GetARMFlags() & HWCAP_VFPv3D16 && !(GetARMFlags() & HWCAP_NEON));
|
||||
return (GetARMFlags() & HWCAP_VFPv3) && !(GetARMFlags() & HWCAP_VFPv3D16);
|
||||
}
|
||||
bool UseConvReg()
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user