diff options
author | malc | 2011-08-22 12:41:12 +0200 |
---|---|---|
committer | malc | 2011-08-22 12:41:12 +0200 |
commit | 1afa194a0a3384c5a8fd150e4335d332c22883cf (patch) | |
tree | 87d1ca2dbfb03128e628e344a713297131bad7f7 /monitor.c | |
parent | tcg/ppc64: implement not_i32/64 and ext32u_i64 (diff) | |
parent | Merge remote-tracking branch 'pmaydell/armhw-for-upstream' into staging (diff) | |
download | qemu-1afa194a0a3384c5a8fd150e4335d332c22883cf.tar.gz qemu-1afa194a0a3384c5a8fd150e4335d332c22883cf.tar.xz qemu-1afa194a0a3384c5a8fd150e4335d332c22883cf.zip |
Merge branch 'master' of git://git.qemu.org/qemu
Diffstat (limited to 'monitor.c')
-rw-r--r-- | monitor.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -2054,7 +2054,7 @@ static void print_pte(Monitor *mon, target_phys_addr_t addr, static void tlb_info_32(Monitor *mon, CPUState *env) { - int l1, l2; + unsigned int l1, l2; uint32_t pgd, pde, pte; pgd = env->cr[3] & ~0xfff; @@ -2082,7 +2082,7 @@ static void tlb_info_32(Monitor *mon, CPUState *env) static void tlb_info_pae32(Monitor *mon, CPUState *env) { - int l1, l2, l3; + unsigned int l1, l2, l3; uint64_t pdpe, pde, pte; uint64_t pdp_addr, pd_addr, pt_addr; |