mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-09 18:44:58 -06:00
target/tricore: Drop some temp initialization
The temp variables here are always set afterward; the initialization with a constant was discarded. Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
This commit is contained in:
parent
0a47678626
commit
32f948afcf
1 changed files with 2 additions and 2 deletions
|
@ -6914,7 +6914,7 @@ static void decode_rrr1_maddq_h(DisasContext *ctx)
|
|||
r4 = MASK_OP_RRR1_D(ctx->opcode);
|
||||
n = MASK_OP_RRR1_N(ctx->opcode);
|
||||
|
||||
temp = tcg_const_i32(n);
|
||||
temp = tcg_temp_new();
|
||||
temp2 = tcg_temp_new();
|
||||
|
||||
switch (op2) {
|
||||
|
@ -7396,7 +7396,7 @@ static void decode_rrr1_msubq_h(DisasContext *ctx)
|
|||
r4 = MASK_OP_RRR1_D(ctx->opcode);
|
||||
n = MASK_OP_RRR1_N(ctx->opcode);
|
||||
|
||||
temp = tcg_const_i32(n);
|
||||
temp = tcg_temp_new();
|
||||
temp2 = tcg_temp_new();
|
||||
|
||||
switch (op2) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue