diff options
| author | Philippe Mathieu-Daudé <f4bug@amsat.org> | 2021-04-13 10:47:10 +0200 |
|---|---|---|
| committer | Philippe Mathieu-Daudé <f4bug@amsat.org> | 2021-05-02 16:49:35 +0200 |
| commit | a2b0a27d33e9b1079698cee04ff029a0555b5ea5 (patch) | |
| tree | 25d812498da93beddf8910ce957141066ce30daa /target/mips/helper.h | |
| parent | 5679479b9a1b0dd4772904c3af0d02bb3c9e635f (diff) | |
| download | focaccia-qemu-a2b0a27d33e9b1079698cee04ff029a0555b5ea5.tar.gz focaccia-qemu-a2b0a27d33e9b1079698cee04ff029a0555b5ea5.zip | |
target/mips: Move TCG source files under tcg/ sub directory
To ease maintenance, move all TCG specific files under the tcg/ sub-directory. Adapt the Meson machinery. The following prototypes: - mips_tcg_init() - mips_cpu_do_unaligned_access() - mips_cpu_do_transaction_failed() can now be restricted to the "tcg-internal.h" header. Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Message-Id: <20210428170410.479308-29-f4bug@amsat.org>
Diffstat (limited to 'target/mips/helper.h')
| -rw-r--r-- | target/mips/helper.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/mips/helper.h b/target/mips/helper.h index ba301ae160..a9c6c7d1a3 100644 --- a/target/mips/helper.h +++ b/target/mips/helper.h @@ -608,4 +608,4 @@ DEF_HELPER_FLAGS_2(rddsp, 0, tl, tl, env) #include "tcg/sysemu_helper.h.inc" #endif /* !CONFIG_USER_ONLY */ -#include "msa_helper.h.inc" +#include "tcg/msa_helper.h.inc" |