mirror of https://github.com/xemu-project/xemu.git
target/sparc: Remove egress label in disas_sparc_context
Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Acked-by: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
This commit is contained in:
parent
36ab4623a8
commit
a6ca81cb2a
|
@ -5727,32 +5727,31 @@ static void disas_sparc_insn(DisasContext * dc, unsigned int insn)
|
||||||
dc->npc = dc->npc + 4;
|
dc->npc = dc->npc + 4;
|
||||||
}
|
}
|
||||||
jmp_insn:
|
jmp_insn:
|
||||||
goto egress;
|
return;
|
||||||
illegal_insn:
|
illegal_insn:
|
||||||
gen_exception(dc, TT_ILL_INSN);
|
gen_exception(dc, TT_ILL_INSN);
|
||||||
goto egress;
|
return;
|
||||||
unimp_flush:
|
unimp_flush:
|
||||||
gen_exception(dc, TT_UNIMP_FLUSH);
|
gen_exception(dc, TT_UNIMP_FLUSH);
|
||||||
goto egress;
|
return;
|
||||||
#if !defined(CONFIG_USER_ONLY)
|
#if !defined(CONFIG_USER_ONLY)
|
||||||
priv_insn:
|
priv_insn:
|
||||||
gen_exception(dc, TT_PRIV_INSN);
|
gen_exception(dc, TT_PRIV_INSN);
|
||||||
goto egress;
|
return;
|
||||||
#endif
|
#endif
|
||||||
nfpu_insn:
|
nfpu_insn:
|
||||||
gen_op_fpexception_im(dc, FSR_FTT_UNIMPFPOP);
|
gen_op_fpexception_im(dc, FSR_FTT_UNIMPFPOP);
|
||||||
goto egress;
|
return;
|
||||||
#if !defined(CONFIG_USER_ONLY) && !defined(TARGET_SPARC64)
|
#if !defined(CONFIG_USER_ONLY) && !defined(TARGET_SPARC64)
|
||||||
nfq_insn:
|
nfq_insn:
|
||||||
gen_op_fpexception_im(dc, FSR_FTT_SEQ_ERROR);
|
gen_op_fpexception_im(dc, FSR_FTT_SEQ_ERROR);
|
||||||
goto egress;
|
return;
|
||||||
#endif
|
#endif
|
||||||
#ifndef TARGET_SPARC64
|
#ifndef TARGET_SPARC64
|
||||||
ncp_insn:
|
ncp_insn:
|
||||||
gen_exception(dc, TT_NCP_INSN);
|
gen_exception(dc, TT_NCP_INSN);
|
||||||
goto egress;
|
return;
|
||||||
#endif
|
#endif
|
||||||
egress:
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static void sparc_tr_init_disas_context(DisasContextBase *dcbase, CPUState *cs)
|
static void sparc_tr_init_disas_context(DisasContextBase *dcbase, CPUState *cs)
|
||||||
|
|
Loading…
Reference in New Issue