accel/tcg: Remove cpu_loop_exit() stub

Last commit removed the last non-TCG use of cpu_loop_exit().
This method is now only called within TCG files, so we can
remove its stub for non-TCG accelerators.

Signed-off-by: Philippe Mathieu-Daudé <philmd@oss.qualcomm.com>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20260617171438.75914-4-philmd@oss.qualcomm.com>
This commit is contained in:
Philippe Mathieu-Daudé
2026-06-16 18:17:19 +02:00
parent d51fcd7fb8
commit 7ca3f8a84b
2 changed files with 0 additions and 20 deletions

View File

@@ -4,7 +4,6 @@ stub_ss.add(files(
'nitro-stub.c',
'mshv-stub.c',
'nvmm-stub.c',
'tcg-stub.c',
'whpx-stub.c',
'xen-stub.c',
))

View File

@@ -1,19 +0,0 @@
/*
* QEMU TCG accelerator stub
*
* Copyright Red Hat, Inc. 2013
*
* Author: Paolo Bonzini <pbonzini@redhat.com>
*
* This work is licensed under the terms of the GNU GPL, version 2 or later.
* See the COPYING file in the top-level directory.
*
*/
#include "qemu/osdep.h"
#include "exec/cpu-common.h"
G_NORETURN void cpu_loop_exit(CPUState *cpu)
{
g_assert_not_reached();
}