mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-06-18 00:01:45 +00:00
Really clean up all the emitter loadstores on ARM. If a ARM device supports VFPv4, then it supports IDIVA, so handle that in CPUDetect.
This commit is contained in:
parent
202e2fa5c8
commit
c93f7760ce
4 changed files with 28 additions and 108 deletions
|
@ -154,8 +154,10 @@ std::string CPUInfo::Summarize()
|
|||
if (bVFPv3) sum += ", VFPv3";
|
||||
if (bTLS) sum += ", TLS";
|
||||
if (bVFPv4) sum += ", VFPv4";
|
||||
if (bIDIVa) sum += ", IDIVa";
|
||||
if (bIDIVt) sum += ", IDIVt";
|
||||
// On some buggy kernels(Qualcomm) they show that they support VFPv4 but not IDIVa
|
||||
// All VFPv4 CPUs will support IDIVa
|
||||
if (bIDIVa || bVFPv4) sum += ", IDIVa";
|
||||
if (bIDIVt || bVFPv4) sum += ", IDIVt";
|
||||
|
||||
return sum;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue