summaryrefslogtreecommitdiff
path: root/src/arch/mips/isa/decoder.isa
diff options
context:
space:
mode:
authorGabe Black <gblack@eecs.umich.edu>2009-07-22 01:57:55 -0700
committerGabe Black <gblack@eecs.umich.edu>2009-07-22 01:57:55 -0700
commit9ba2ed8532de42fe3aeb386874db41bfc0fa17f6 (patch)
tree4ae3b67b0a6847745e61ba4dc802fcaa45d161dc /src/arch/mips/isa/decoder.isa
parent7f0c07bf03496d06bdea0d9006f58a8221c7c746 (diff)
downloadgem5-9ba2ed8532de42fe3aeb386874db41bfc0fa17f6.tar.xz
MIPS: Small fix I forgot to qrefresh into my last change.
Diffstat (limited to 'src/arch/mips/isa/decoder.isa')
-rw-r--r--src/arch/mips/isa/decoder.isa2
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;