system: Replace arch_type global by qemu_arch_available() helper

qemu_arch_available() is a bit simpler to understand while
reviewing than the undocumented arch_type variable.

Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Message-Id: <20250305005225.95051-5-philmd@linaro.org>
This commit is contained in:
Philippe Mathieu-Daudé 2025-03-04 23:59:27 +01:00
parent 5dc4337f79
commit 44ac8eaff0
5 changed files with 11 additions and 8 deletions

View file

@ -24,4 +24,7 @@
#include "qemu/osdep.h"
#include "system/arch_init.h"
const uint32_t arch_type = QEMU_ARCH;
bool qemu_arch_available(unsigned qemu_arch_mask)
{
return qemu_arch_mask & QEMU_ARCH;
}