mirror of
https://gitlab.com/qemu-project/qemu
synced 2024-11-05 20:35:44 +00:00
target-s390x: Remove unused ld_code6() function
The ld_code6() function is unused; remove it. Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Reviewed-by: Richard Henderson <rth@twiddle.net> Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
This commit is contained in:
parent
64e64ef609
commit
55818ad812
1 changed files with 0 additions and 5 deletions
|
@ -264,11 +264,6 @@ static inline uint64_t ld_code4(CPUS390XState *env, uint64_t pc)
|
|||
return (uint64_t)(uint32_t)cpu_ldl_code(env, pc);
|
||||
}
|
||||
|
||||
static inline uint64_t ld_code6(CPUS390XState *env, uint64_t pc)
|
||||
{
|
||||
return (ld_code2(env, pc) << 32) | ld_code4(env, pc + 2);
|
||||
}
|
||||
|
||||
static int get_mem_index(DisasContext *s)
|
||||
{
|
||||
switch (s->tb->flags & FLAG_MASK_ASC) {
|
||||
|
|
Loading…
Reference in a new issue