Update <qemu/bswap.h> and <exec/cpu-all.h>
This is a small update to merge upstream changes to cpu load/store
macro operations.
Change-Id: I0deda5923ed5efc1f0b412701a59a40a86015d55
diff --git a/exec.c b/exec.c
index ba53ad0..8eb030e 100644
--- a/exec.c
+++ b/exec.c
@@ -165,10 +165,10 @@
#define L1_SIZE (1 << L1_BITS)
#define L2_SIZE (1 << L2_BITS)
-unsigned long qemu_real_host_page_size;
-unsigned long qemu_host_page_bits;
-unsigned long qemu_host_page_size;
-unsigned long qemu_host_page_mask;
+uintptr_t qemu_real_host_page_size;
+uintptr_t qemu_host_page_bits;
+uintptr_t qemu_host_page_size;
+uintptr_t qemu_host_page_mask;
/* XXX: for system emulation, it could just be an array */
static PageDesc *l1_map[L1_SIZE];