mirror of
https://github.com/mii443/qemu.git
synced 2025-08-31 03:19:27 +00:00
target/nios2: Clean up goto in handle_instruction
Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
This commit is contained in:
@ -753,7 +753,8 @@ static void handle_instruction(DisasContext *dc, CPUNios2State *env)
|
||||
op = get_opcode(code);
|
||||
|
||||
if (unlikely(op >= ARRAY_SIZE(i_type_instructions))) {
|
||||
goto illegal_op;
|
||||
t_gen_helper_raise_exception(dc, EXCP_ILLEGAL);
|
||||
return;
|
||||
}
|
||||
|
||||
dc->zero = NULL;
|
||||
@ -764,11 +765,6 @@ static void handle_instruction(DisasContext *dc, CPUNios2State *env)
|
||||
if (dc->zero) {
|
||||
tcg_temp_free(dc->zero);
|
||||
}
|
||||
|
||||
return;
|
||||
|
||||
illegal_op:
|
||||
t_gen_helper_raise_exception(dc, EXCP_ILLEGAL);
|
||||
}
|
||||
|
||||
static const char * const regnames[] = {
|
||||
|
Reference in New Issue
Block a user