armjit: Don't use R1 in the regcache.

This way it can be used in swl/swr/ins as a temp reg.
Note: those instructions are currently DISABLEd, though.
This commit is contained in:
Unknown W. Brackets 2013-03-07 02:09:13 -08:00
parent 925e4e42bd
commit cea396e901

View File

@ -48,7 +48,7 @@ static const ARMReg *GetMIPSAllocationOrder(int &count) {
// R8 is used to preserve flags in nasty branches.
// R9 and upwards are reserved for jit basics.
static const ARMReg allocationOrder[] = {
R12, R1, R2, R3, R4, R5, R6, R7,
R2, R3, R4, R5, R6, R7, R12,
};
count = sizeof(allocationOrder) / sizeof(const int);
return allocationOrder;