diff options
author | Philippe Mathieu-Daudé <philmd@linaro.org> | 2023-08-28 14:53:30 +0200 |
---|---|---|
committer | Philippe Mathieu-Daudé <philmd@linaro.org> | 2023-08-31 19:47:43 +0200 |
commit | 09b07f286d539a1fdd9b1cdb8f4de181c896af3a (patch) | |
tree | 986dc708f14a1b31f40dfaad2a59aadab960316b /target/i386/tcg | |
parent | abaf3e5b25c7c83241f329d53e89cb8c8344ebef (diff) | |
download | qemu-09b07f286d539a1fdd9b1cdb8f4de181c896af3a.zip qemu-09b07f286d539a1fdd9b1cdb8f4de181c896af3a.tar.gz qemu-09b07f286d539a1fdd9b1cdb8f4de181c896af3a.tar.bz2 |
target/translate: Include missing 'exec/cpu_ldst.h' header
All these files access the CPU LD/ST API declared in "exec/cpu_ldst.h".
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20230828221314.18435-4-philmd@linaro.org>
Diffstat (limited to 'target/i386/tcg')
-rw-r--r-- | target/i386/tcg/fpu_helper.c | 1 | ||||
-rw-r--r-- | target/i386/tcg/sysemu/excp_helper.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/target/i386/tcg/fpu_helper.c b/target/i386/tcg/fpu_helper.c index 6f3741b..4430d3d 100644 --- a/target/i386/tcg/fpu_helper.c +++ b/target/i386/tcg/fpu_helper.c @@ -21,6 +21,7 @@ #include <math.h> #include "cpu.h" #include "tcg-cpu.h" +#include "exec/cpu_ldst.h" #include "exec/helper-proto.h" #include "fpu/softfloat.h" #include "fpu/softfloat-macros.h" diff --git a/target/i386/tcg/sysemu/excp_helper.c b/target/i386/tcg/sysemu/excp_helper.c index b5f0abf..226689a 100644 --- a/target/i386/tcg/sysemu/excp_helper.c +++ b/target/i386/tcg/sysemu/excp_helper.c @@ -19,6 +19,7 @@ #include "qemu/osdep.h" #include "cpu.h" +#include "exec/cpu_ldst.h" #include "exec/exec-all.h" #include "tcg/helper-tcg.h" |