diff options
Diffstat (limited to 'target-mips')
-rw-r--r-- | target-mips/cpu.h | 2 | ||||
-rw-r--r-- | target-mips/op_helper.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/target-mips/cpu.h b/target-mips/cpu.h index 9173452451..a27ffd3bd0 100644 --- a/target-mips/cpu.h +++ b/target-mips/cpu.h @@ -470,7 +470,7 @@ void r4k_do_tlbr (void); void mips_cpu_list (FILE *f, int (*cpu_fprintf)(FILE *f, const char *fmt, ...)); void do_unassigned_access(target_phys_addr_t addr, int is_write, int is_exec, - int unused); + int unused, int size); #define CPUState CPUMIPSState #define cpu_init cpu_mips_init diff --git a/target-mips/op_helper.c b/target-mips/op_helper.c index fb7ae53730..9e9c42581b 100644 --- a/target-mips/op_helper.c +++ b/target-mips/op_helper.c @@ -1911,7 +1911,7 @@ void tlb_fill (target_ulong addr, int is_write, int mmu_idx, void *retaddr) } void do_unassigned_access(target_phys_addr_t addr, int is_write, int is_exec, - int unused) + int unused, int size) { if (is_exec) do_raise_exception(EXCP_IBE); |