mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-08 02:03:56 -06:00
target/ppc: 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
6180cc4027
commit
9723281fbb
3 changed files with 9 additions and 9 deletions
|
@ -1508,8 +1508,8 @@ static bool do_vcmpq(DisasContext *ctx, arg_VX_bf *a, bool sign)
|
|||
REQUIRE_INSNS_FLAGS2(ctx, ISA310);
|
||||
REQUIRE_VECTOR(ctx);
|
||||
|
||||
vra = tcg_temp_local_new_i64();
|
||||
vrb = tcg_temp_local_new_i64();
|
||||
vra = tcg_temp_new_i64();
|
||||
vrb = tcg_temp_new_i64();
|
||||
gt = gen_new_label();
|
||||
lt = gen_new_label();
|
||||
done = gen_new_label();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue