mirror of https://github.com/xemu-project/xemu.git
target/arm: Avoid tcg_const_ptr in gen_sve_{ldr,str}
This hides the implicit initialization of a variable. Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
This commit is contained in:
parent
3351889caa
commit
d6840b9878
|
@ -4206,8 +4206,9 @@ void gen_sve_ldr(DisasContext *s, TCGv_ptr base, int vofs,
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
TCGLabel *loop = gen_new_label();
|
TCGLabel *loop = gen_new_label();
|
||||||
TCGv_ptr tp, i = tcg_const_ptr(0);
|
TCGv_ptr tp, i = tcg_temp_new_ptr();
|
||||||
|
|
||||||
|
tcg_gen_movi_ptr(i, 0);
|
||||||
gen_set_label(loop);
|
gen_set_label(loop);
|
||||||
|
|
||||||
t0 = tcg_temp_new_i64();
|
t0 = tcg_temp_new_i64();
|
||||||
|
@ -4284,8 +4285,9 @@ void gen_sve_str(DisasContext *s, TCGv_ptr base, int vofs,
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
TCGLabel *loop = gen_new_label();
|
TCGLabel *loop = gen_new_label();
|
||||||
TCGv_ptr tp, i = tcg_const_ptr(0);
|
TCGv_ptr tp, i = tcg_temp_new_ptr();
|
||||||
|
|
||||||
|
tcg_gen_movi_ptr(i, 0);
|
||||||
gen_set_label(loop);
|
gen_set_label(loop);
|
||||||
|
|
||||||
t0 = tcg_temp_new_i64();
|
t0 = tcg_temp_new_i64();
|
||||||
|
|
Loading…
Reference in New Issue