]> xenbits.xensource.com Git - people/aperard/qemu-dm.git/commitdiff
target/hppa/meson: Only build int_helper.o with system emulation
authorPhilippe Mathieu-Daudé <philmd@linaro.org>
Fri, 2 Jun 2023 22:11:54 +0000 (00:11 +0200)
committerPhilippe Mathieu-Daudé <philmd@linaro.org>
Tue, 13 Jun 2023 09:28:58 +0000 (11:28 +0200)
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>

target/hppa/int_helper.c
target/hppa/meson.build

index f599dccfffeddfd183fbe7df21ce2b1b9f17f7a5..d2480b163bdc8ccfbeb07ae25e3a5993a45ea522 100644 (file)
@@ -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 */
index 81b4b4e617aa3c0d4121b4c5cc150b9d706e3598..83b1e0ee7d839ff73ff32b7964d8ff78a96d8bff 100644 (file)
@@ -7,13 +7,13 @@ hppa_ss.add(files(
   'fpu_helper.c',
   'gdbstub.c',
   'helper.c',
-  'int_helper.c',
   'op_helper.c',
   'translate.c',
 ))
 
 hppa_softmmu_ss = ss.source_set()
 hppa_softmmu_ss.add(files(
+  'int_helper.c',
   'machine.c',
   'mem_helper.c',
   'sys_helper.c',