mirror of
https://github.com/libretro/ppsspp.git
synced 2024-11-29 11:20:40 +00:00
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:
parent
925e4e42bd
commit
cea396e901
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user