softjit: Oops, correct allocation typo.

Decided to leave these for paired operations.
This commit is contained in:
Unknown W. Brackets 2021-11-30 07:27:11 -08:00
parent bfe31d8b62
commit 1c5615624a

View File

@ -56,7 +56,7 @@ void RegCache::SetupABI(const std::vector<Purpose> &args, bool forceRetain) {
Add(vecArgs[i], VEC_INVALID);
// Add all other caller saved regs without purposes yet.
static const Reg genTemps[] = { X8, X9, X10, X11, X12, X13, X14, X15, X16, X17 };
static const Reg genTemps[] = { X8, X9, X10, X11, X12, X13, X14, X15 };
for (Reg r : genTemps)
Add(r, GEN_INVALID);
static const Reg vecTemps[] = { Q16, Q17, Q18, Q19, Q20, Q21, Q22, Q23 };