Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
philmd committed Aug 31, 2023
1 parent abaf3e5 commit 09b07f2
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 0 deletions.
1 change: 1 addition & 0 deletions target/avr/helper.c
Expand Up @@ -24,6 +24,7 @@
#include "cpu.h"
#include "hw/core/tcg-cpu-ops.h"
#include "exec/exec-all.h"
#include "exec/cpu_ldst.h"
#include "exec/address-spaces.h"
#include "exec/helper-proto.h"

Expand Down
1 change: 1 addition & 0 deletions target/i386/tcg/fpu_helper.c
Expand Up @@ -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"
Expand Down
1 change: 1 addition & 0 deletions target/i386/tcg/sysemu/excp_helper.c
Expand Up @@ -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"

Expand Down
1 change: 1 addition & 0 deletions target/loongarch/cpu.c
Expand Up @@ -11,6 +11,7 @@
#include "qapi/error.h"
#include "qemu/module.h"
#include "sysemu/qtest.h"
#include "exec/cpu_ldst.h"
#include "exec/exec-all.h"
#include "cpu.h"
#include "internals.h"
Expand Down
1 change: 1 addition & 0 deletions target/mips/tcg/ldst_helper.c
Expand Up @@ -24,6 +24,7 @@
#include "cpu.h"
#include "exec/helper-proto.h"
#include "exec/exec-all.h"
#include "exec/cpu_ldst.h"
#include "exec/memop.h"
#include "internal.h"

Expand Down
1 change: 1 addition & 0 deletions target/mips/tcg/msa_helper.c
Expand Up @@ -22,6 +22,7 @@
#include "internal.h"
#include "tcg/tcg.h"
#include "exec/exec-all.h"
#include "exec/cpu_ldst.h"
#include "exec/helper-proto.h"
#include "exec/memop.h"
#include "fpu/softfloat.h"
Expand Down
1 change: 1 addition & 0 deletions target/riscv/op_helper.c
Expand Up @@ -23,6 +23,7 @@
#include "internals.h"
#include "qemu/main-loop.h"
#include "exec/exec-all.h"
#include "exec/cpu_ldst.h"
#include "exec/helper-proto.h"

/* Exceptions processing helpers */
Expand Down
1 change: 1 addition & 0 deletions target/riscv/vector_helper.c
Expand Up @@ -22,6 +22,7 @@
#include "cpu.h"
#include "exec/memop.h"
#include "exec/exec-all.h"
#include "exec/cpu_ldst.h"
#include "exec/helper-proto.h"
#include "fpu/softfloat.h"
#include "tcg/tcg-gvec-desc.h"
Expand Down

0 comments on commit 09b07f2

Please sign in to comment.