On 9/2/21 6:15 PM, Philippe Mathieu-Daudé wrote:
Restrict has_work() to TCG sysemu.
Signed-off-by: Philippe Mathieu-Daudé <f4bug@xxxxxxxxx>
---
target/avr/cpu.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/target/avr/cpu.c b/target/avr/cpu.c
index e9fa54c9777..6267cc6d530 100644
--- a/target/avr/cpu.c
+++ b/target/avr/cpu.c
@@ -32,6 +32,7 @@ static void avr_cpu_set_pc(CPUState *cs, vaddr value)
cpu->env.pc_w = value / 2; /* internally PC points to words */
}
+#if defined(CONFIG_TCG) && !defined(CONFIG_USER_ONLY)
static bool avr_cpu_has_work(CPUState *cs)
No CONFIG_TCG or CONFIG_USER_ONLY test for avr.
Otherwise,
Reviewed-by: Richard Henderson <richard.henderson@xxxxxxxxxx>
r~