diff options
Diffstat (limited to 'target-cris')
-rw-r--r-- | target-cris/cpu.h | 2 | ||||
-rw-r--r-- | target-cris/op_helper.c | 7 |
2 files changed, 0 insertions, 9 deletions
diff --git a/target-cris/cpu.h b/target-cris/cpu.h index 44a98e46a2..cf61a3d660 100644 --- a/target-cris/cpu.h +++ b/target-cris/cpu.h @@ -167,8 +167,6 @@ void do_interrupt(CPUCRISState *env); is returned if the signal was handled by the virtual CPU. */ int cpu_cris_signal_handler(int host_signum, void *pinfo, void *puc); -void do_unassigned_access(target_phys_addr_t addr, int is_write, int is_exec, - int is_asi, int size); enum { CC_OP_DYNAMIC, /* Use env->cc_op */ diff --git a/target-cris/op_helper.c b/target-cris/op_helper.c index a681f84f35..541237bb57 100644 --- a/target-cris/op_helper.c +++ b/target-cris/op_helper.c @@ -243,13 +243,6 @@ void helper_rfn(void) env->pregs[PR_CCS] |= M_FLAG; } -void do_unassigned_access(target_phys_addr_t addr, int is_write, int is_exec, - int is_asi, int size) -{ - D(printf("%s addr=%x w=%d ex=%d asi=%d, size=%d\n", - __func__, addr, is_write, is_exec, is_asi, size)); -} - static void evaluate_flags_writeback(uint32_t flags) { int x; |