diff options
author | Philippe Mathieu-Daudé <philmd@linaro.org> | 2024-03-13 19:42:38 +0100 |
---|---|---|
committer | Philippe Mathieu-Daudé <philmd@linaro.org> | 2024-04-02 14:55:32 +0200 |
commit | d6fd5d834671c8317aef5f0828504237353939ce (patch) | |
tree | 735ee74c0410a518a0fe7563a3f4d05ba93ae4ad /target/arm | |
parent | 0b796f38106e389dce7b1ae761cb5d03e1aaa7fe (diff) |
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/arm')
-rw-r--r-- | target/arm/hvf/hvf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/arm/hvf/hvf.c b/target/arm/hvf/hvf.c index e5f0f60093..65a5601804 100644 --- a/target/arm/hvf/hvf.c +++ b/target/arm/hvf/hvf.c @@ -2246,7 +2246,7 @@ void hvf_arch_update_guest_debug(CPUState *cpu) hvf_arch_set_traps(); } -inline bool hvf_arch_supports_guest_debug(void) +bool hvf_arch_supports_guest_debug(void) { return true; } |