diff options
author | malc <av1474@comtv.ru> | 2009-10-01 22:20:47 +0400 |
---|---|---|
committer | malc <av1474@comtv.ru> | 2009-10-01 22:45:02 +0400 |
commit | 99a0949b720a0936da2052cb9a46db04ffc6db29 (patch) | |
tree | f9e39633853e35b49fc4465337cc196b9650866e /target-mips/op_helper.c | |
parent | bc6291a1b95a2c4c546fde6e5cb4c68366f06649 (diff) |
Get rid of _t suffix
Some not so obvious bits, slirp and Xen were left alone for the time
being.
Signed-off-by: malc <av1474@comtv.ru>
Diffstat (limited to 'target-mips/op_helper.c')
-rw-r--r-- | target-mips/op_helper.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/target-mips/op_helper.c b/target-mips/op_helper.c index d3dab33a36..17e6ed5a8d 100644 --- a/target-mips/op_helper.c +++ b/target-mips/op_helper.c @@ -1508,7 +1508,7 @@ static void r4k_mips_tlb_flush_extra (CPUState *env, int first) static void r4k_fill_tlb (int idx) { - r4k_tlb_t *tlb; + a_r4k_tlb *tlb; /* XXX: detect conflicting TLBs and raise a MCHECK exception when needed */ tlb = &env->tlb->mmu.r4k.tlb[idx]; @@ -1554,7 +1554,7 @@ void r4k_helper_tlbwr (void) void r4k_helper_tlbp (void) { - r4k_tlb_t *tlb; + a_r4k_tlb *tlb; target_ulong mask; target_ulong tag; target_ulong VPN; @@ -1596,7 +1596,7 @@ void r4k_helper_tlbp (void) void r4k_helper_tlbr (void) { - r4k_tlb_t *tlb; + a_r4k_tlb *tlb; uint8_t ASID; int idx; @@ -1846,7 +1846,7 @@ void tlb_fill (target_ulong addr, int is_write, int mmu_idx, void *retaddr) env = saved_env; } -void do_unassigned_access(target_phys_addr_t addr, int is_write, int is_exec, +void do_unassigned_access(a_target_phys_addr addr, int is_write, int is_exec, int unused, int size) { if (is_exec) |