mirror of
https://github.com/yuzu-emu/unicorn
synced 2024-11-24 11:58:20 +00:00
x86: fix a compilation warning on unused variable
This commit is contained in:
parent
b5feddbf1e
commit
f10d79e95f
1 changed files with 1 additions and 1 deletions
|
@ -523,7 +523,7 @@ int x86_cpu_handle_mmu_fault(CPUState *cs, vaddr addr,
|
||||||
int is_dirty, prot, page_size, is_write, is_user;
|
int is_dirty, prot, page_size, is_write, is_user;
|
||||||
hwaddr paddr;
|
hwaddr paddr;
|
||||||
uint64_t rsvd_mask = PG_HI_RSVD_MASK;
|
uint64_t rsvd_mask = PG_HI_RSVD_MASK;
|
||||||
uint32_t page_offset;
|
//uint32_t page_offset;
|
||||||
target_ulong vaddr;
|
target_ulong vaddr;
|
||||||
|
|
||||||
is_user = mmu_idx == MMU_USER_IDX;
|
is_user = mmu_idx == MMU_USER_IDX;
|
||||||
|
|
Loading…
Reference in a new issue