diff options
| author | Richard Henderson | 2021-06-21 01:37:12 +0200 |
|---|---|---|
| committer | Richard Henderson | 2021-07-09 18:42:28 +0200 |
| commit | f3f713cc151086ca39d4f97270594fd8c43e17e5 (patch) | |
| tree | bf59e66d4ebc31cf09df0815d637ee31426e919f /target/rx | |
| parent | target/riscv: Use translator_use_goto_tb (diff) | |
| download | qemu-f3f713cc151086ca39d4f97270594fd8c43e17e5.tar.gz qemu-f3f713cc151086ca39d4f97270594fd8c43e17e5.tar.xz qemu-f3f713cc151086ca39d4f97270594fd8c43e17e5.zip | |
target/rx: Use translator_use_goto_tb
Just use translator_use_goto_tb directly at the one call site,
rather than maintaining a local wrapper.
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'target/rx')
| -rw-r--r-- | target/rx/translate.c | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/target/rx/translate.c b/target/rx/translate.c index 22a15ee11d..23a626438a 100644 --- a/target/rx/translate.c +++ b/target/rx/translate.c @@ -142,18 +142,9 @@ void rx_cpu_dump_state(CPUState *cs, FILE *f, int flags) } } -static bool use_goto_tb(DisasContext *dc, target_ulong dest) -{ - if (unlikely(dc->base.singlestep_enabled)) { - return false; - } else { - return true; - } -} - static void gen_goto_tb(DisasContext *dc, int n, target_ulong dest) { - if (use_goto_tb(dc, dest)) { + if (translator_use_goto_tb(&dc->base, dest)) { tcg_gen_goto_tb(n); tcg_gen_movi_i32(cpu_pc, dest); tcg_gen_exit_tb(dc->base.tb, n); |
