summaryrefslogtreecommitdiff
path: root/src/arch/x86/tlb.hh
diff options
context:
space:
mode:
authorGabe Black <gblack@eecs.umich.edu>2007-08-31 13:02:58 -0700
committerGabe Black <gblack@eecs.umich.edu>2007-08-31 13:02:58 -0700
commit941675690ca77475f8f311e99f3660d0394e583c (patch)
treedaa6eb2423311e30099e2bbbb3e38c52e6903ceb /src/arch/x86/tlb.hh
parenteddf6f163741d116235caeba9cec3e604907dfcf (diff)
downloadgem5-941675690ca77475f8f311e99f3660d0394e583c.tar.xz
X86: Get x86 to compile again after the simobject constructor change.
--HG-- extra : convert_revision : 17a3e16e849bee88892223f0c993b19c15daa554
Diffstat (limited to 'src/arch/x86/tlb.hh')
-rw-r--r--src/arch/x86/tlb.hh5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/arch/x86/tlb.hh b/src/arch/x86/tlb.hh
index 6622f5dc2..354443794 100644
--- a/src/arch/x86/tlb.hh
+++ b/src/arch/x86/tlb.hh
@@ -59,7 +59,6 @@
#define __ARCH_X86_TLB_HH__
#include <iostream>
-#include <string>
#include "sim/host.hh"
#include "sim/tlb.hh"
@@ -81,14 +80,14 @@ namespace X86ISA
class ITB : public GenericTLB
{
public:
- ITB(const std::string &name) : GenericTLB(name)
+ ITB(const Params *p) : GenericTLB(p)
{}
};
class DTB : public GenericTLB
{
public:
- DTB(const std::string &name) : GenericTLB(name)
+ DTB(const Params *p) : GenericTLB(p)
{}
};
};