mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Quick buildfix. Last commit was meant to go on a WIP branch but meh :)
This commit is contained in:
parent
ab3037112f
commit
bd3a03ad1d
1 changed files with 2 additions and 2 deletions
|
@ -38,7 +38,7 @@
|
||||||
// #define CONDITIONAL_DISABLE { fpr.ReleaseSpillLocks(); Comp_Generic(op); return; }
|
// #define CONDITIONAL_DISABLE { fpr.ReleaseSpillLocks(); Comp_Generic(op); return; }
|
||||||
#define CONDITIONAL_DISABLE ;
|
#define CONDITIONAL_DISABLE ;
|
||||||
#define DISABLE { fpr.ReleaseSpillLocksAndDiscardTemps(); Comp_Generic(op); return; }
|
#define DISABLE { fpr.ReleaseSpillLocksAndDiscardTemps(); Comp_Generic(op); return; }
|
||||||
#define NEON_IF_AVAILABLE(func) { if (jo.useNEONVFPU) { func(); return; } }
|
#define NEON_IF_AVAILABLE(func) { if (jo.useNEONVFPU) { func(op); return; } }
|
||||||
#define _RS MIPS_GET_RS(op)
|
#define _RS MIPS_GET_RS(op)
|
||||||
#define _RT MIPS_GET_RT(op)
|
#define _RT MIPS_GET_RT(op)
|
||||||
#define _RD MIPS_GET_RD(op)
|
#define _RD MIPS_GET_RD(op)
|
||||||
|
@ -943,7 +943,7 @@ namespace MIPSComp
|
||||||
}
|
}
|
||||||
|
|
||||||
void Jit::Comp_Vh2f(MIPSOpcode op) {
|
void Jit::Comp_Vh2f(MIPSOpcode op) {
|
||||||
NEON_IF_AVAILABLE(CompNEON_Vh2f(op))
|
NEON_IF_AVAILABLE(CompNEON_Vh2f);
|
||||||
CONDITIONAL_DISABLE;
|
CONDITIONAL_DISABLE;
|
||||||
if (js.HasUnknownPrefix()) {
|
if (js.HasUnknownPrefix()) {
|
||||||
DISABLE;
|
DISABLE;
|
||||||
|
|
Loading…
Add table
Reference in a new issue