mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-08 02:03:56 -06:00
target/arm: Don't use tcg_temp_local_new_*
Since tcg_temp_new_* is now identical, use those. Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
This commit is contained in:
parent
78817d3b9f
commit
d4aa49acd3
2 changed files with 6 additions and 6 deletions
|
@ -2694,7 +2694,7 @@ static bool do_clast_vector(DisasContext *s, arg_rprr_esz *a, bool before)
|
|||
return true;
|
||||
}
|
||||
|
||||
last = tcg_temp_local_new_i32();
|
||||
last = tcg_temp_new_i32();
|
||||
over = gen_new_label();
|
||||
|
||||
find_last_active(s, last, esz, a->pg);
|
||||
|
@ -4342,7 +4342,7 @@ void gen_sve_ldr(DisasContext *s, TCGv_ptr base, int vofs,
|
|||
tcg_temp_free_i64(t0);
|
||||
} else {
|
||||
TCGLabel *loop = gen_new_label();
|
||||
TCGv_ptr tp, i = tcg_const_local_ptr(0);
|
||||
TCGv_ptr tp, i = tcg_const_ptr(0);
|
||||
|
||||
gen_set_label(loop);
|
||||
|
||||
|
@ -4427,7 +4427,7 @@ void gen_sve_str(DisasContext *s, TCGv_ptr base, int vofs,
|
|||
tcg_temp_free_i64(t0);
|
||||
} else {
|
||||
TCGLabel *loop = gen_new_label();
|
||||
TCGv_ptr tp, i = tcg_const_local_ptr(0);
|
||||
TCGv_ptr tp, i = tcg_const_ptr(0);
|
||||
|
||||
gen_set_label(loop);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue