mirror of
https://github.com/yuzu-emu/unicorn.git
synced 2025-01-22 15:01:01 +00:00
qemu/bswap: Remove unused qemu_bswap_len()
Last use of qemu_bswap_len() has been removed in commit e5fd1eb05ec ("apb: add busA qdev property to PBM PCI bridge"). Backport 949eaaad5341db318fc8bae79489a1f7624f3b9e
This commit is contained in:
parent
3e25486110
commit
7bb2c171ac
|
@ -171,12 +171,6 @@ CPU_CONVERT(le, 16, uint16_t)
|
||||||
CPU_CONVERT(le, 32, uint32_t)
|
CPU_CONVERT(le, 32, uint32_t)
|
||||||
CPU_CONVERT(le, 64, uint64_t)
|
CPU_CONVERT(le, 64, uint64_t)
|
||||||
|
|
||||||
/* len must be one of 1, 2, 4 */
|
|
||||||
static inline uint32_t qemu_bswap_len(uint32_t value, int len)
|
|
||||||
{
|
|
||||||
return bswap32(value) >> (32 - 8 * len);
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Unions for reinterpreting between floats and integers. */
|
/* Unions for reinterpreting between floats and integers. */
|
||||||
|
|
||||||
typedef union {
|
typedef union {
|
||||||
|
|
Loading…
Reference in a new issue