]> git.ipfire.org Git - thirdparty/qemu.git/commit
accel/tcg: Name gen_goto_tb()'s TB slot index as @tb_slot_idx
authorPhilippe Mathieu-Daudé <philmd@linaro.org>
Fri, 10 Oct 2025 03:12:51 +0000 (05:12 +0200)
committerPhilippe Mathieu-Daudé <philmd@linaro.org>
Thu, 16 Oct 2025 08:33:33 +0000 (10:33 +0200)
commit482869ca84a33c4d407f580400033fa5f146c1a7
treea7472ba31f1235ee037a624835c603b495e42f04
parent8109ebdb95c45d9062c7e6e7beae0ee571fca4f8
accel/tcg: Name gen_goto_tb()'s TB slot index as @tb_slot_idx

tcg_gen_goto_tb() takes an unsigned index to the TB slot (0 or 1).
Declare the argument as unsigned and rename it as @tb_slot_idx
(which is more descriptive than @n) on all targets.

Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Reviewed-by: Pierrick Bouvier <pierrick.bouvier@linaro.org>
Message-Id: <20251010031745.37528-1-philmd@linaro.org>
14 files changed:
target/alpha/translate.c
target/arm/tcg/translate-a64.c
target/arm/tcg/translate.c
target/avr/translate.c
target/hexagon/translate.c
target/loongarch/tcg/translate.c
target/microblaze/translate.c
target/mips/tcg/translate.c
target/ppc/translate.c
target/riscv/translate.c
target/rx/translate.c
target/sh4/translate.c
target/sparc/translate.c
target/tricore/translate.c