diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2010-08-23 16:14:24 -0700 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2010-08-23 16:14:24 -0700 |
commit | 25ffa8eb8b3ebdfe62f1e17f51030ffdf79b5275 (patch) | |
tree | 01b73f5ede03967b0577ddb45c552efd9b3a9170 /src/arch/x86/tlb.cc | |
parent | 7a6ed1b10bd483589e474985bc664233d3a43e35 (diff) | |
download | gem5-25ffa8eb8b3ebdfe62f1e17f51030ffdf79b5275.tar.xz |
X86: Create a directory for files that define register indexes.
This is to help tidy up arch/x86. These files should not be used external to
the ISA.
--HG--
rename : src/arch/x86/apicregs.hh => src/arch/x86/regs/apic.hh
rename : src/arch/x86/floatregs.hh => src/arch/x86/regs/float.hh
rename : src/arch/x86/intregs.hh => src/arch/x86/regs/int.hh
rename : src/arch/x86/miscregs.hh => src/arch/x86/regs/misc.hh
rename : src/arch/x86/segmentregs.hh => src/arch/x86/regs/segment.hh
Diffstat (limited to 'src/arch/x86/tlb.cc')
-rw-r--r-- | src/arch/x86/tlb.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/arch/x86/tlb.cc b/src/arch/x86/tlb.cc index 78efd5b69..71e0b3adb 100644 --- a/src/arch/x86/tlb.cc +++ b/src/arch/x86/tlb.cc @@ -43,8 +43,8 @@ #include "arch/x86/faults.hh" #include "arch/x86/insts/microldstop.hh" -#include "arch/x86/miscregs.hh" #include "arch/x86/pagetable.hh" +#include "arch/x86/regs/misc.hh" #include "arch/x86/tlb.hh" #include "arch/x86/x86_traits.hh" #include "base/bitfield.hh" |