mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-07 01:33:56 -06:00
target/mips: Don't use tcg_temp_local_new
Since tcg_temp_new is now identical, use that. Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
This commit is contained in:
parent
3a5d177322
commit
6180cc4027
2 changed files with 16 additions and 45 deletions
|
@ -1017,8 +1017,8 @@ static void gen_llwp(DisasContext *ctx, uint32_t base, int16_t offset,
|
|||
static void gen_scwp(DisasContext *ctx, uint32_t base, int16_t offset,
|
||||
uint32_t reg1, uint32_t reg2, bool eva)
|
||||
{
|
||||
TCGv taddr = tcg_temp_local_new();
|
||||
TCGv lladdr = tcg_temp_local_new();
|
||||
TCGv taddr = tcg_temp_new();
|
||||
TCGv lladdr = tcg_temp_new();
|
||||
TCGv_i64 tval = tcg_temp_new_i64();
|
||||
TCGv_i64 llval = tcg_temp_new_i64();
|
||||
TCGv_i64 val = tcg_temp_new_i64();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue