From: Richard Henderson Date: Sat, 25 Feb 2023 07:29:17 +0000 (-1000) Subject: target/sparc: Remove egress label in disas_sparc_context X-Git-Tag: qemu-xen-4.18.0-rc5~288^2~27 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=a6ca81cb2a6215e5a7ae2db2a3b8dc21c01ac23c;p=qemu-xen.git target/sparc: Remove egress label in disas_sparc_context Reviewed-by: Peter Maydell Acked-by: Mark Cave-Ayland Signed-off-by: Richard Henderson --- diff --git a/target/sparc/translate.c b/target/sparc/translate.c index a20426202e..560fb32e28 100644 --- a/target/sparc/translate.c +++ b/target/sparc/translate.c @@ -5727,32 +5727,31 @@ static void disas_sparc_insn(DisasContext * dc, unsigned int insn) dc->npc = dc->npc + 4; } jmp_insn: - goto egress; + return; illegal_insn: gen_exception(dc, TT_ILL_INSN); - goto egress; + return; unimp_flush: gen_exception(dc, TT_UNIMP_FLUSH); - goto egress; + return; #if !defined(CONFIG_USER_ONLY) priv_insn: gen_exception(dc, TT_PRIV_INSN); - goto egress; + return; #endif nfpu_insn: gen_op_fpexception_im(dc, FSR_FTT_UNIMPFPOP); - goto egress; + return; #if !defined(CONFIG_USER_ONLY) && !defined(TARGET_SPARC64) nfq_insn: gen_op_fpexception_im(dc, FSR_FTT_SEQ_ERROR); - goto egress; + return; #endif #ifndef TARGET_SPARC64 ncp_insn: gen_exception(dc, TT_NCP_INSN); - goto egress; + return; #endif - egress: } static void sparc_tr_init_disas_context(DisasContextBase *dcbase, CPUState *cs)