diff options
| author | Richard Henderson <richard.henderson@linaro.org> | 2025-05-04 11:19:17 -0700 |
|---|---|---|
| committer | Richard Henderson <richard.henderson@linaro.org> | 2025-05-28 08:08:48 +0100 |
| commit | 5c2891601ccdaa41427187ef95bc25c828b355e4 (patch) | |
| tree | 24fa99493c25cc57fa98afaba1b1e86175da4930 /accel/tcg/cpu-exec.c | |
| parent | 90f80e4b0fedfc78163c1c112bb74ccbfcae2365 (diff) | |
| download | focaccia-qemu-5c2891601ccdaa41427187ef95bc25c828b355e4.tar.gz focaccia-qemu-5c2891601ccdaa41427187ef95bc25c828b355e4.zip | |
accel/tcg: Assert TCGCPUOps.pointer_wrap is set
All targets now provide the function, so we can make the call unconditional. Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'accel/tcg/cpu-exec.c')
| -rw-r--r-- | accel/tcg/cpu-exec.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/accel/tcg/cpu-exec.c b/accel/tcg/cpu-exec.c index cc5f362305..713bdb2056 100644 --- a/accel/tcg/cpu-exec.c +++ b/accel/tcg/cpu-exec.c @@ -1039,6 +1039,7 @@ bool tcg_exec_realizefn(CPUState *cpu, Error **errp) assert(tcg_ops->cpu_exec_halt); assert(tcg_ops->cpu_exec_interrupt); assert(tcg_ops->cpu_exec_reset); + assert(tcg_ops->pointer_wrap); #endif /* !CONFIG_USER_ONLY */ assert(tcg_ops->translate_code); assert(tcg_ops->get_tb_cpu_state); |