aboutsummaryrefslogtreecommitdiff
path: root/target/i386
diff options
context:
space:
mode:
authorPhilippe Mathieu-Daudé <philmd@linaro.org>2024-03-13 19:42:38 +0100
committerPhilippe Mathieu-Daudé <philmd@linaro.org>2024-04-02 14:55:32 +0200
commitd6fd5d834671c8317aef5f0828504237353939ce (patch)
tree735ee74c0410a518a0fe7563a3f4d05ba93ae4ad /target/i386
parent0b796f38106e389dce7b1ae761cb5d03e1aaa7fe (diff)
downloadqemu-d6fd5d834671c8317aef5f0828504237353939ce.zip
qemu-d6fd5d834671c8317aef5f0828504237353939ce.tar.gz
qemu-d6fd5d834671c8317aef5f0828504237353939ce.tar.bz2
accel/hvf: Un-inline hvf_arch_supports_guest_debug()
See previous commit and commit 9de9fa5cf2 ("Avoid using inlined functions with external linkage") for rationale. Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Message-Id: <20240313184954.42513-3-philmd@linaro.org>
Diffstat (limited to 'target/i386')
-rw-r--r--target/i386/hvf/hvf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/target/i386/hvf/hvf.c b/target/i386/hvf/hvf.c
index 11ffdd4..1ed8ed5 100644
--- a/target/i386/hvf/hvf.c
+++ b/target/i386/hvf/hvf.c
@@ -708,7 +708,7 @@ void hvf_arch_update_guest_debug(CPUState *cpu)
{
}
-inline bool hvf_arch_supports_guest_debug(void)
+bool hvf_arch_supports_guest_debug(void)
{
return false;
}