]> git.proxmox.com Git - mirror_qemu.git/commit
w64: Fix size of ram_addr_t
authorStefan Weil <sw@weilnetz.de>
Fri, 2 Mar 2012 22:30:02 +0000 (23:30 +0100)
committerBlue Swirl <blauwirbel@gmail.com>
Sat, 3 Mar 2012 18:10:16 +0000 (18:10 +0000)
commit53576999a6905d76a59ce47006a2a0c0b03f942e
tree6863c376eb29c47e0dba99b6a20b9f4fbe65f331
parent5a30d3f19d9c6d135bf7a395a24dc455698d5cf9
w64: Fix size of ram_addr_t

ram_addr_t must be large enough to address any address of the host.

For hosts with sizeof(unsigned long) == sizeof(void *), this patch
changes nothing. All currently supported hosts fall into this category.

For w64 hosts, sizeof(unsigned long) is 4 while sizeof(void *) is 8,
so the use of uintptr_t is needed.

Signed-off-by: Stefan Weil <sw@weilnetz.de>
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
cpu-common.h