mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-17 15:12:07 -06:00
accel/tcg: Remove cpu_ldsb_code / cpu_ldsw_code
Previous commits replaced them by translator_ld* calls. Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Message-Id: <20240405131532.40913-1-philmd@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
This commit is contained in:
parent
763f2413e0
commit
7c211c1cb4
1 changed files with 0 additions and 10 deletions
|
@ -355,16 +355,6 @@ uint32_t cpu_lduw_code(CPUArchState *env, abi_ptr addr);
|
||||||
uint32_t cpu_ldl_code(CPUArchState *env, abi_ptr addr);
|
uint32_t cpu_ldl_code(CPUArchState *env, abi_ptr addr);
|
||||||
uint64_t cpu_ldq_code(CPUArchState *env, abi_ptr addr);
|
uint64_t cpu_ldq_code(CPUArchState *env, abi_ptr addr);
|
||||||
|
|
||||||
static inline int cpu_ldsb_code(CPUArchState *env, abi_ptr addr)
|
|
||||||
{
|
|
||||||
return (int8_t)cpu_ldub_code(env, addr);
|
|
||||||
}
|
|
||||||
|
|
||||||
static inline int cpu_ldsw_code(CPUArchState *env, abi_ptr addr)
|
|
||||||
{
|
|
||||||
return (int16_t)cpu_lduw_code(env, addr);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* tlb_vaddr_to_host:
|
* tlb_vaddr_to_host:
|
||||||
* @env: CPUArchState
|
* @env: CPUArchState
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue