From 8f7d456e70ae1caeda6f5573bd2e7d93e26cec9e Mon Sep 17 00:00:00 2001 From: "R. Belmont" Date: Mon, 30 May 2011 14:57:35 +0000 Subject: [PATCH] Another missed 4.6 warning (no whatsnew) --- src/emu/cpu/mips/mips3com.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/emu/cpu/mips/mips3com.c b/src/emu/cpu/mips/mips3com.c index 96541d39ca5..fca04f1c58d 100644 --- a/src/emu/cpu/mips/mips3com.c +++ b/src/emu/cpu/mips/mips3com.c @@ -312,7 +312,7 @@ void mips3com_tlbwr(mips3_state *mips) void mips3com_tlbp(mips3_state *mips) { UINT32 tlbindex; - UINT64 vpn; +// UINT64 vpn; /* iterate over TLB entries */ for (tlbindex = 0; tlbindex < mips->tlbentries; tlbindex++) @@ -329,7 +329,7 @@ void mips3com_tlbp(mips3_state *mips) } /* validate that our tlb_table was in sync */ - vpn = ((mips->cpr[0][COP0_EntryHi] >> 13) & 0x07ffffff) << 1; +// vpn = ((mips->cpr[0][COP0_EntryHi] >> 13) & 0x07ffffff) << 1; if (tlbindex != mips->tlbentries) mips->cpr[0][COP0_Index] = tlbindex; else