diff options
author | Richard Henderson <richard.henderson@linaro.org> | 2021-08-06 07:08:54 -1000 |
---|---|---|
committer | Richard Henderson <richard.henderson@linaro.org> | 2023-05-25 13:57:50 +0000 |
commit | d721cc94b25a100980c767beca9daae6c2cac6b0 (patch) | |
tree | 8952f918701482fb9f43366b5de252d60d5bcf58 /tcg/mips/tcg-target.h | |
parent | b300c134465465385045ab705b68a42699688332 (diff) |
tcg/mips: Move TCG_AREG0 to S8
No functional change; just moving the saved reserved regs to the end.
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'tcg/mips/tcg-target.h')
-rw-r--r-- | tcg/mips/tcg-target.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tcg/mips/tcg-target.h b/tcg/mips/tcg-target.h index 7277a117ef..46b63e59cc 100644 --- a/tcg/mips/tcg-target.h +++ b/tcg/mips/tcg-target.h @@ -76,7 +76,7 @@ typedef enum { TCG_REG_RA, TCG_REG_CALL_STACK = TCG_REG_SP, - TCG_AREG0 = TCG_REG_S0, + TCG_AREG0 = TCG_REG_S8, } TCGReg; /* used for function call generation */ |