target/microblaze: Compile op_helper.c as common unit
In order do build op_helper.c as a common unit we simply need to use the common version of "accel/tcg/cpu-ldst.h". Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Reviewed-by: Pierrick Bouvier <pierrick.bouvier@oss.qualcomm.com> Message-Id: <20260423100612.27278-7-philmd@linaro.org>
Philippe Mathieu-Daudé committed
Apr 23, 2026 at 10:54 UTC
9dbf31b5cfc5932f96bc2ba67978c36c69e78d15
2 files changed
+2
-2
target/microblaze/meson.build
+1
-1
@@ -4,13 +4,13 @@ microblaze_common_ss = ss.source_set()
4
microblaze_common_ss.add(files(
5
'gdbstub.c',
6
'helper.c',
7
+ 'op_helper.c',
8
))
9
10
microblaze_ss = ss.source_set()
11
microblaze_ss.add(gen)
12
microblaze_ss.add(files(
13
'cpu.c',
13
- 'op_helper.c',
14
'translate.c',
15
))
16
target/microblaze/op_helper.c
+1
-1
@@ -23,7 +23,7 @@
23
#include "cpu.h"
24
#include "exec/helper-proto.h"
25
#include "qemu/host-utils.h"
26
-#include "accel/tcg/cpu-ldst.h"
26
+#include "accel/tcg/cpu-ldst-common.h"
27
#include "fpu/softfloat.h"
28
29
void helper_put(uint32_t id, uint32_t ctrl, uint32_t data)