From e40a67beeda6aa6e735546e9f08f3db41e23592a Mon Sep 17 00:00:00 2001 From: Alexandre Courbot Date: Tue, 25 Jan 2011 15:32:01 +0900 Subject: target-sh4: fix TLB invalidation code In cpu_sh4_invalidate_tlb, the UTLB was invalidated twice and the ITLB left unchaged, probably because of some unfortunate copy/paste. Signed-off-by: Alexandre Courbot Signed-off-by: Aurelien Jarno --- target-sh4/helper.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'target-sh4') diff --git a/target-sh4/helper.c b/target-sh4/helper.c index 45449ea64e..bee05274fd 100644 --- a/target-sh4/helper.c +++ b/target-sh4/helper.c @@ -559,8 +559,8 @@ void cpu_load_tlb(CPUSH4State * env) entry->v = 0; } /* ITLB */ - for (i = 0; i < UTLB_SIZE; i++) { - tlb_t * entry = &s->utlb[i]; + for (i = 0; i < ITLB_SIZE; i++) { + tlb_t * entry = &s->itlb[i]; entry->v = 0; } -- cgit v1.2.3