summaryrefslogtreecommitdiff
path: root/src/arch/x86/tlb.hh
diff options
context:
space:
mode:
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)
{}
};
};