From: Philippe Mathieu-Daudé Date: Wed, 8 Oct 2025 04:42:24 +0000 (+0200) Subject: target/microblaze: Remove target_ulong use in gen_goto_tb() X-Git-Tag: v10.2.0-rc1~61^2~55 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=dc693a4a88a4c02b490378a7dc05c8e83f59cf97;p=thirdparty%2Fqemu.git target/microblaze: Remove target_ulong use in gen_goto_tb() translator_use_goto_tb() expects a vaddr type since commit b1c09220b4c ("accel/tcg: Replace target_ulong with vaddr in translator_*()"). Signed-off-by: Philippe Mathieu-Daudé Reviewed-by: Anton Johansson Reviewed-by: Pierrick Bouvier Reviewed-by: Richard Henderson Message-Id: <20251015180115.97493-4-philmd@linaro.org> --- diff --git a/target/microblaze/translate.c b/target/microblaze/translate.c index 3dd74b021e..b93a40fedb 100644 --- a/target/microblaze/translate.c +++ b/target/microblaze/translate.c @@ -116,8 +116,7 @@ static void gen_raise_hw_excp(DisasContext *dc, uint32_t esr_ec) gen_raise_exception_sync(dc, EXCP_HW_EXCP); } -static void gen_goto_tb(DisasContext *dc, unsigned tb_slot_idx, - target_ulong dest) +static void gen_goto_tb(DisasContext *dc, unsigned tb_slot_idx, vaddr dest) { if (translator_use_goto_tb(&dc->base, dest)) { tcg_gen_goto_tb(tb_slot_idx);