diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2009-07-22 01:57:55 -0700 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2009-07-22 01:57:55 -0700 |
commit | 9ba2ed8532de42fe3aeb386874db41bfc0fa17f6 (patch) | |
tree | 4ae3b67b0a6847745e61ba4dc802fcaa45d161dc | |
parent | 7f0c07bf03496d06bdea0d9006f58a8221c7c746 (diff) | |
download | gem5-9ba2ed8532de42fe3aeb386874db41bfc0fa17f6.tar.xz |
MIPS: Small fix I forgot to qrefresh into my last change.
-rw-r--r-- | src/arch/mips/isa/decoder.isa | 2 |
1 files changed, 1 insertions, 1 deletions
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; |