mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-06 17:23:56 -06:00
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>
This commit is contained in:
parent
0b796f3810
commit
d6fd5d8346
2 changed files with 2 additions and 2 deletions
|
@ -2246,7 +2246,7 @@ void hvf_arch_update_guest_debug(CPUState *cpu)
|
||||||
hvf_arch_set_traps();
|
hvf_arch_set_traps();
|
||||||
}
|
}
|
||||||
|
|
||||||
inline bool hvf_arch_supports_guest_debug(void)
|
bool hvf_arch_supports_guest_debug(void)
|
||||||
{
|
{
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
|
@ -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;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue