summaryrefslogtreecommitdiff
path: root/src/arch/x86/tlb.hh
diff options
context:
space:
mode:
authorGabe Black <gblack@eecs.umich.edu>2007-08-28 14:30:50 -0700
committerGabe Black <gblack@eecs.umich.edu>2007-08-28 14:30:50 -0700
commita3367adaff66997044553cb9a746e101418afbdd (patch)
tree4a26081985724fe95e9b993e8d49994d2e65a755 /src/arch/x86/tlb.hh
parent3ab19130770e04aaede1a3582959a01bb482b96b (diff)
downloadgem5-a3367adaff66997044553cb9a746e101418afbdd.tar.xz
Address translation: De-templatize the GenericTLB class.
--HG-- extra : convert_revision : b605a90a4a1071e39f49085a839fdcd175e09fdb
Diffstat (limited to 'src/arch/x86/tlb.hh')
-rw-r--r--src/arch/x86/tlb.hh8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/arch/x86/tlb.hh b/src/arch/x86/tlb.hh
index 4cf65ac08..6622f5dc2 100644
--- a/src/arch/x86/tlb.hh
+++ b/src/arch/x86/tlb.hh
@@ -78,17 +78,17 @@ namespace X86ISA
void unserialize(Checkpoint *cp, const std::string &section);
};
- class ITB : public GenericITB<false, false>
+ class ITB : public GenericTLB
{
public:
- ITB(const std::string &name) : GenericITB<false, false>(name)
+ ITB(const std::string &name) : GenericTLB(name)
{}
};
- class DTB : public GenericDTB<false, false>
+ class DTB : public GenericTLB
{
public:
- DTB(const std::string &name) : GenericDTB<false, false>(name)
+ DTB(const std::string &name) : GenericTLB(name)
{}
};
};