summaryrefslogtreecommitdiffstats
path: root/include/exec
diff options
context:
space:
mode:
authorRichard Henderson2022-08-11 06:05:31 +0200
committerRichard Henderson2022-09-06 09:04:26 +0200
commitdac8d19bdb3ccaafbcbd2df34135464964232a8f (patch)
treed711154d8174c0e67067213cf61a90db1b37db5c /include/exec
parentaccel/tcg: Document the faulting lookup in tb_lookup_cmp (diff)
downloadqemu-dac8d19bdb3ccaafbcbd2df34135464964232a8f.tar.gz
qemu-dac8d19bdb3ccaafbcbd2df34135464964232a8f.tar.xz
qemu-dac8d19bdb3ccaafbcbd2df34135464964232a8f.zip
accel/tcg: Remove translator_ldsw
The only user can easily use translator_lduw and adjust the type to signed during the return. Reviewed-by: Alistair Francis <alistair.francis@wdc.com> Acked-by: Ilya Leoshkevich <iii@linux.ibm.com> Tested-by: Ilya Leoshkevich <iii@linux.ibm.com> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'include/exec')
-rw-r--r--include/exec/translator.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/include/exec/translator.h b/include/exec/translator.h
index 0d0bf3a31e..45b9268ca4 100644
--- a/include/exec/translator.h
+++ b/include/exec/translator.h
@@ -178,7 +178,6 @@ bool translator_use_goto_tb(DisasContextBase *db, target_ulong dest);
#define FOR_EACH_TRANSLATOR_LD(F) \
F(translator_ldub, uint8_t, cpu_ldub_code, /* no swap */) \
- F(translator_ldsw, int16_t, cpu_ldsw_code, bswap16) \
F(translator_lduw, uint16_t, cpu_lduw_code, bswap16) \
F(translator_ldl, uint32_t, cpu_ldl_code, bswap32) \
F(translator_ldq, uint64_t, cpu_ldq_code, bswap64)