[PATCH-for-10.1 1/3] target/mips: Inline qemu_get_betls() and qemu_put_betls()

2025-04-05 Thread Philippe Mathieu-Daudé
We only use qemu_get_betls() and qemu_put_betls() once in the whole code base. Inline them (checking TARGET_MIPS64 instead of TARGET_LONG_BITS == 64) so we can remove them later as unused. Signed-off-by: Philippe Mathieu-Daudé --- target/mips/system/machine.c | 12 ++-- 1 file changed, 1

Re: [PATCH-for-10.1 1/3] target/mips: Inline qemu_get_betls() and qemu_put_betls()

2025-03-24 Thread Pierrick Bouvier
On 3/23/25 15:50, Philippe Mathieu-Daudé wrote: We only use qemu_get_betls() and qemu_put_betls() once in the whole code base. Inline them (checking TARGET_MIPS64 instead of TARGET_LONG_BITS == 64) so we can remove them later as unused. Signed-off-by: Philippe Mathieu-Daudé --- target/mips/sy