mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-06-13 00:58:29 +02: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:
@ -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;
|
||||
}
|
||||
|
Reference in New Issue
Block a user