[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v2 67/76] target/sparc: Remove egress label in disas_sparc_contex
From: |
Richard Henderson |
Subject: |
[PATCH v2 67/76] target/sparc: Remove egress label in disas_sparc_context |
Date: |
Sun, 26 Feb 2023 19:24:56 -1000 |
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
---
target/sparc/translate.c | 15 +++++++--------
1 file changed, 7 insertions(+), 8 deletions(-)
diff --git a/target/sparc/translate.c b/target/sparc/translate.c
index bdf464f802..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)
--
2.34.1
- [PATCH v2 62/76] target/s390x: Remove assert vs g_in2, (continued)
- [PATCH v2 62/76] target/s390x: Remove assert vs g_in2, Richard Henderson, 2023/02/27
- [PATCH v2 64/76] target/sh4: Drop tcg_temp_free, Richard Henderson, 2023/02/27
- [PATCH v2 65/76] target/sparc: Drop get_temp_tl, Richard Henderson, 2023/02/27
- [PATCH v2 68/76] target/sparc: Drop free_compare, Richard Henderson, 2023/02/27
- [PATCH v2 69/76] target/sparc: Drop tcg_temp_free, Richard Henderson, 2023/02/27
- [PATCH v2 63/76] target/s390x: Remove g_out, g_out2, g_in1, g_in2 from DisasContext, Richard Henderson, 2023/02/27
- [PATCH v2 71/76] target/xtensa: Drop reset_sar_tracker, Richard Henderson, 2023/02/27
- [PATCH v2 73/76] include/exec/gen-icount: Drop tcg_temp_free in gen_tb_start, Richard Henderson, 2023/02/27
- [PATCH v2 75/76] tcg: Create tcg/tcg-temp-internal.h, Richard Henderson, 2023/02/27
- [PATCH v2 66/76] target/sparc: Drop get_temp_i32, Richard Henderson, 2023/02/27
- [PATCH v2 67/76] target/sparc: Remove egress label in disas_sparc_context,
Richard Henderson <=
- [PATCH v2 70/76] target/tricore: Drop tcg_temp_free, Richard Henderson, 2023/02/27
- [PATCH v2 72/76] target/xtensa: Drop tcg_temp_free, Richard Henderson, 2023/02/27
- [PATCH v2 74/76] tracing: remove transform.py, Richard Henderson, 2023/02/27
- [PATCH v2 76/76] docs/devel/tcg-ops: Drop recommendation to free temps, Richard Henderson, 2023/02/27