From 9ba2ed8532de42fe3aeb386874db41bfc0fa17f6 Mon Sep 17 00:00:00 2001 From: Gabe Black Date: Wed, 22 Jul 2009 01:57:55 -0700 Subject: [PATCH] MIPS: Small fix I forgot to qrefresh into my last change. --- src/arch/mips/isa/decoder.isa | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/arch/mips/isa/decoder.isa b/src/arch/mips/isa/decoder.isa index cc75c5235..c531347d2 100644 --- a/src/arch/mips/isa/decoder.isa +++ b/src/arch/mips/isa/decoder.isa @@ -902,7 +902,7 @@ decode OPCODE_HI default Unknown::unknown() { vpn = ((EntryHi >> 11) & 0xFFFFFFFC); } tlbIndex = xc->tcBase()->getITBPtr()-> - probeEntry(VPN, entryHi.asid); + probeEntry(vpn, entryHi.asid); // Check TLB for entry matching EntryHi if (tlbIndex != -1) { Index = tlbIndex;