diff options
author | Philippe Mathieu-Daudé <philmd@linaro.org> | 2024-10-14 20:20:46 -0300 |
---|---|---|
committer | Philippe Mathieu-Daudé <philmd@linaro.org> | 2024-10-15 12:16:28 -0300 |
commit | d74fbe0fbdca05407190fbffb41c1dac795850ea (patch) | |
tree | f393ed1ac8251ac6e3c1209fc098e46220ea2ca0 | |
parent | a6f8e0ae5a5223d421c986165310ef0bd252c3e0 (diff) | |
download | qemu-d74fbe0fbdca05407190fbffb41c1dac795850ea.zip qemu-d74fbe0fbdca05407190fbffb41c1dac795850ea.tar.gz qemu-d74fbe0fbdca05407190fbffb41c1dac795850ea.tar.bz2 |
target/mips: Remove unused MEMOP_IDX() macro
MEMOP_IDX() is unused since commit 948f88661c6 ("target/mips:
Use cpu_*_data_ra for msa load/store"), remove it.
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20241014232235.51988-1-philmd@linaro.org>
-rw-r--r-- | target/mips/tcg/msa_helper.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/target/mips/tcg/msa_helper.c b/target/mips/tcg/msa_helper.c index d218176..1d40383 100644 --- a/target/mips/tcg/msa_helper.c +++ b/target/mips/tcg/msa_helper.c @@ -8211,14 +8211,6 @@ void helper_msa_ffint_u_df(CPUMIPSState *env, uint32_t df, uint32_t wd, /* Element-by-element access macros */ #define DF_ELEMENTS(df) (MSA_WRLEN / DF_BITS(df)) -#if !defined(CONFIG_USER_ONLY) -#define MEMOP_IDX(DF) \ - MemOpIdx oi = make_memop_idx(MO_TE | DF | MO_UNALN, \ - mips_env_mmu_index(env)); -#else -#define MEMOP_IDX(DF) -#endif - #if TARGET_BIG_ENDIAN static inline uint64_t bswap16x4(uint64_t x) { |