mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-12-01 01:11:46 +00:00
Add a quick optimization to the x86 fpu comps.
This commit is contained in:
parent
28941537df
commit
f1386dfca1
@ -220,7 +220,7 @@ void Jit::Comp_FPUComp(u32 op)
|
||||
|
||||
case 5: //ult
|
||||
case 13: //nge
|
||||
CompFPComp(fs, ft, CMPLTSS, true);
|
||||
CompFPComp(ft, fs, CMPNLESS);
|
||||
break;
|
||||
|
||||
case 6: //ole
|
||||
@ -230,7 +230,7 @@ void Jit::Comp_FPUComp(u32 op)
|
||||
|
||||
case 7: //ule
|
||||
case 15: //ngt
|
||||
CompFPComp(fs, ft, CMPLESS, true);
|
||||
CompFPComp(ft, fs, CMPNLTSS);
|
||||
break;
|
||||
|
||||
default:
|
||||
|
Loading…
Reference in New Issue
Block a user