Jit64: Don't use PEXT in DoubleToSingle on AMD Zen
This was causing severe slowdown in some games.
This commit is contained in:
parent
185e49d2a9
commit
a106c99826
|
@ -68,7 +68,7 @@ void CommonAsmRoutines::GenConvertDoubleToSingle()
|
|||
|
||||
// Don't Denormalize
|
||||
|
||||
if (cpu_info.bBMI2)
|
||||
if (cpu_info.bFastBMI2)
|
||||
{
|
||||
// Extract bits 0-1 and 5-34
|
||||
MOV(64, R(RSCRATCH), Imm64(0xc7ffffffe0000000));
|
||||
|
|
Loading…
Reference in New Issue