aboutsummaryrefslogtreecommitdiff
path: root/target/hppa/int_helper.c
diff options
context:
space:
mode:
authorPhilippe Mathieu-Daudé <philmd@linaro.org>2023-06-03 00:11:54 +0200
committerPhilippe Mathieu-Daudé <philmd@linaro.org>2023-06-13 11:28:58 +0200
commit48b9e026791288088d1a9c807c36276c60e6573f (patch)
tree883ee455a911b42072d00d0deb2b503d5da0351e /target/hppa/int_helper.c
parented3958910aef1461d99123c78afb1d70b74a83d0 (diff)
downloadqemu-48b9e026791288088d1a9c807c36276c60e6573f.zip
qemu-48b9e026791288088d1a9c807c36276c60e6573f.tar.gz
qemu-48b9e026791288088d1a9c807c36276c60e6573f.tar.bz2
target/hppa/meson: Only build int_helper.o with system emulation
int_helper.c only contains system emulation code: remove the #ifdef'ry and move the file to the meson softmmu source set. Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Message-Id: <20230602223016.58647-1-philmd@linaro.org>
Diffstat (limited to 'target/hppa/int_helper.c')
-rw-r--r--target/hppa/int_helper.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/target/hppa/int_helper.c b/target/hppa/int_helper.c
index f599dcc..d2480b1 100644
--- a/target/hppa/int_helper.c
+++ b/target/hppa/int_helper.c
@@ -25,7 +25,6 @@
#include "hw/core/cpu.h"
#include "hw/hppa/hppa_hardware.h"
-#ifndef CONFIG_USER_ONLY
static void eval_interrupt(HPPACPU *cpu)
{
CPUState *cs = CPU(cpu);
@@ -273,5 +272,3 @@ bool hppa_cpu_exec_interrupt(CPUState *cs, int interrupt_request)
}
return false;
}
-
-#endif /* !CONFIG_USER_ONLY */