aboutsummaryrefslogtreecommitdiff
path: root/target
diff options
context:
space:
mode:
authorClaudio Fontana <cfontana@suse.de>2023-02-13 17:29:00 -0300
committerPeter Maydell <peter.maydell@linaro.org>2023-02-16 16:08:11 +0000
commita06e3a68ba2b0f51d28f83e94f8266811c0ba05c (patch)
treee1bd1d05b8b0467bec6475a026f888e17fb4950e /target
parente431b8f608d22b0bca64b75b8738b2a6ab4468bd (diff)
downloadqemu-a06e3a68ba2b0f51d28f83e94f8266811c0ba05c.zip
qemu-a06e3a68ba2b0f51d28f83e94f8266811c0ba05c.tar.gz
qemu-a06e3a68ba2b0f51d28f83e94f8266811c0ba05c.tar.bz2
target/arm: rename handle_semihosting to tcg_handle_semihosting
make it clearer from the name that this is a tcg-only function. Signed-off-by: Claudio Fontana <cfontana@suse.de> Signed-off-by: Fabiano Rosas <farosas@suse.de> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Tested-by: Philippe Mathieu-Daudé <philmd@linaro.org> Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'target')
-rw-r--r--target/arm/helper.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/target/arm/helper.c b/target/arm/helper.c
index 22670c2..509e674 100644
--- a/target/arm/helper.c
+++ b/target/arm/helper.c
@@ -11014,7 +11014,7 @@ static void arm_cpu_do_interrupt_aarch64(CPUState *cs)
* trapped to the hypervisor in KVM.
*/
#ifdef CONFIG_TCG
-static void handle_semihosting(CPUState *cs)
+static void tcg_handle_semihosting(CPUState *cs)
{
ARMCPU *cpu = ARM_CPU(cs);
CPUARMState *env = &cpu->env;
@@ -11076,7 +11076,7 @@ void arm_cpu_do_interrupt(CPUState *cs)
*/
#ifdef CONFIG_TCG
if (cs->exception_index == EXCP_SEMIHOST) {
- handle_semihosting(cs);
+ tcg_handle_semihosting(cs);
return;
}
#endif