]> git.ipfire.org Git - thirdparty/qemu.git/commit
target/alpha: Replace VMSTATE_UINTTL() -> VMSTATE_UINT64()
authorPhilippe Mathieu-Daudé <philmd@linaro.org>
Thu, 25 Sep 2025 00:31:34 +0000 (02:31 +0200)
committerPhilippe Mathieu-Daudé <philmd@linaro.org>
Thu, 16 Oct 2025 08:33:34 +0000 (10:33 +0200)
commit5940712ed0f770cae4d5e5999dc46b6675db8120
tree5f40d31db5a3caae431b32caee4a0dc38ab1b7c6
parenta6a5f0b4644ed41878936d264bc23dd72532771f
target/alpha: Replace VMSTATE_UINTTL() -> VMSTATE_UINT64()

All these CPUAlphaState fields are of uint64_t type (except
the @fir[] array which uses float64, expanded to the same
type definition). Use the appropriate VMSTATE_UINT64() macro.

There is no functional change (the migration stream is not
modified), because the Alpha targets are only built as 64-bit:

  $ git grep TARGET_LONG_BITS configs/targets/alpha*
  configs/targets/alpha-linux-user.mak:4:TARGET_LONG_BITS=64
  configs/targets/alpha-softmmu.mak:2:TARGET_LONG_BITS=64

Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Reviewed-by: Anton Johansson <anjo@rev.ng>
Message-Id: <20250925005137.59378-1-philmd@linaro.org>
target/alpha/machine.c