From a3367adaff66997044553cb9a746e101418afbdd Mon Sep 17 00:00:00 2001 From: Gabe Black Date: Tue, 28 Aug 2007 14:30:50 -0700 Subject: Address translation: De-templatize the GenericTLB class. --HG-- extra : convert_revision : b605a90a4a1071e39f49085a839fdcd175e09fdb --- src/arch/x86/tlb.hh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/arch/x86/tlb.hh') 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 §ion); }; - class ITB : public GenericITB + class ITB : public GenericTLB { public: - ITB(const std::string &name) : GenericITB(name) + ITB(const std::string &name) : GenericTLB(name) {} }; - class DTB : public GenericDTB + class DTB : public GenericTLB { public: - DTB(const std::string &name) : GenericDTB(name) + DTB(const std::string &name) : GenericTLB(name) {} }; }; -- cgit v1.2.3