From: Philippe Mathieu-Daudé Date: Tue, 28 Nov 2023 07:15:16 +0000 (+0100) Subject: accel: Do not set CPUState::tcg_cflags in non-TCG accels X-Git-Tag: v9.0.0-rc0~100^2~33 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b94b8c604b6d4e6071569c4c00a1f4c841028934;p=thirdparty%2Fqemu.git accel: Do not set CPUState::tcg_cflags in non-TCG accels 'tcg_cflags' is specific to TCG. Signed-off-by: Philippe Mathieu-Daudé Reviewed-by: Richard Henderson Message-Id: <20231130075958.21285-1-philmd@linaro.org> --- diff --git a/target/arm/cpu.c b/target/arm/cpu.c index 826ce842c09..593695b4247 100644 --- a/target/arm/cpu.c +++ b/target/arm/cpu.c @@ -1796,8 +1796,8 @@ static void arm_cpu_realizefn(DeviceState *dev, Error **errp) int pagebits; Error *local_err = NULL; +#if defined(CONFIG_TCG) && !defined(CONFIG_USER_ONLY) /* Use pc-relative instructions in system-mode */ -#ifndef CONFIG_USER_ONLY cs->tcg_cflags |= CF_PCREL; #endif diff --git a/target/i386/cpu.c b/target/i386/cpu.c index 2524881ce24..03822d9ba8e 100644 --- a/target/i386/cpu.c +++ b/target/i386/cpu.c @@ -7221,8 +7221,8 @@ static void x86_cpu_realizefn(DeviceState *dev, Error **errp) static bool ht_warned; unsigned requested_lbr_fmt; +#if defined(CONFIG_TCG) && !defined(CONFIG_USER_ONLY) /* Use pc-relative instructions in system-mode */ -#ifndef CONFIG_USER_ONLY cs->tcg_cflags |= CF_PCREL; #endif