mirror of https://github.com/xemu-project/xemu.git
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
|
@ -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…
Reference in New Issue