diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2007-08-28 14:30:50 -0700 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2007-08-28 14:30:50 -0700 |
commit | a3367adaff66997044553cb9a746e101418afbdd (patch) | |
tree | 4a26081985724fe95e9b993e8d49994d2e65a755 /src/sim/tlb.cc | |
parent | 3ab19130770e04aaede1a3582959a01bb482b96b (diff) | |
download | gem5-a3367adaff66997044553cb9a746e101418afbdd.tar.xz |
Address translation: De-templatize the GenericTLB class.
--HG--
extra : convert_revision : b605a90a4a1071e39f49085a839fdcd175e09fdb
Diffstat (limited to 'src/sim/tlb.cc')
-rw-r--r-- | src/sim/tlb.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sim/tlb.cc b/src/sim/tlb.cc index 5ceec637e..de6779839 100644 --- a/src/sim/tlb.cc +++ b/src/sim/tlb.cc @@ -34,7 +34,7 @@ #include "sim/tlb.hh" Fault -GenericTLBBase::translate(RequestPtr req, ThreadContext * tc) +GenericTLB::translate(RequestPtr req, ThreadContext * tc, bool) { #if FULL_SYSTEM panic("Generic translation shouldn't be used in full system mode.\n"); |