diff options
author | Philippe Mathieu-Daudé <philmd@linaro.org> | 2024-10-03 18:41:36 +0200 |
---|---|---|
committer | Philippe Mathieu-Daudé <philmd@linaro.org> | 2024-10-15 11:55:09 -0300 |
commit | 5caa0e1b1bf8597ea7277391b0e17e8584fad18f (patch) | |
tree | 6aa9a0e5d89b1f238e4aa43edf78c1c49a051611 | |
parent | 68e05eff508210c712845647ab55d0bfdd3e5e77 (diff) | |
download | qemu-5caa0e1b1bf8597ea7277391b0e17e8584fad18f.zip qemu-5caa0e1b1bf8597ea7277391b0e17e8584fad18f.tar.gz qemu-5caa0e1b1bf8597ea7277391b0e17e8584fad18f.tar.bz2 |
exec/memop: Remove unused memop_big_endian() helper
Last use of memop_big_endian() was removed in commit 592134617c9
("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>
-rw-r--r-- | include/exec/memop.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/include/exec/memop.h b/include/exec/memop.h index b699bf7..acdb40a 100644 --- a/include/exec/memop.h +++ b/include/exec/memop.h @@ -164,12 +164,6 @@ static inline MemOp size_memop(unsigned 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: MemOp value |