diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2007-08-31 13:02:58 -0700 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2007-08-31 13:02:58 -0700 |
commit | 941675690ca77475f8f311e99f3660d0394e583c (patch) | |
tree | daa6eb2423311e30099e2bbbb3e38c52e6903ceb /src/arch/x86/tlb.cc | |
parent | eddf6f163741d116235caeba9cec3e604907dfcf (diff) | |
download | gem5-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.cc')
-rw-r--r-- | src/arch/x86/tlb.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/arch/x86/tlb.cc b/src/arch/x86/tlb.cc index e29ec58c2..d2db8cb0b 100644 --- a/src/arch/x86/tlb.cc +++ b/src/arch/x86/tlb.cc @@ -79,11 +79,11 @@ namespace X86ISA { X86ISA::ITB * X86ITBParams::create() { - return new X86ISA::ITB(name); + return new X86ISA::ITB(this); } X86ISA::DTB * X86DTBParams::create() { - return new X86ISA::DTB(name); + return new X86ISA::DTB(this); } |