mirror of https://github.com/xemu-project/xemu.git
exec/memop: Remove unused memop_big_endian() helper
Last use of memop_big_endian() was removed in commit 592134617c
("accel/tcg: Reorg system mode store helpers").
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Thomas Huth <thuth@redhat.com>
Message-Id: <20241003234211.53644-3-philmd@linaro.org>
This commit is contained in:
parent
68e05eff50
commit
5caa0e1b1b
|
@ -164,12 +164,6 @@ static inline MemOp size_memop(unsigned size)
|
||||||
return (MemOp)ctz32(size);
|
return (MemOp)ctz32(size);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Big endianness from MemOp. */
|
|
||||||
static inline bool memop_big_endian(MemOp op)
|
|
||||||
{
|
|
||||||
return (op & MO_BSWAP) == MO_BE;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* memop_alignment_bits:
|
* memop_alignment_bits:
|
||||||
* @memop: MemOp value
|
* @memop: MemOp value
|
||||||
|
|
Loading…
Reference in New Issue