Enable LitPool for ARMv6.

Was originally disabled because vertex JIT wasn't flushing but it now does.
This commit is contained in:
Sacha 2014-08-20 17:25:38 +10:00
parent cb2f50bf98
commit 7691e0e0b5

View File

@ -534,9 +534,8 @@ void ARMXEmitter::MOVI2R(ARMReg reg, u32 val, bool optimize)
}
}
// Use literal pool for ARMv6.
// Disabled for now as it is crashing since Vertex Decoder JIT
// AddNewLit(val);
// LDR(reg, R_PC); // To be backpatched later
AddNewLit(val);
LDR(reg, R_PC); // To be backpatched later
}
#endif
}