diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2006-08-15 04:46:51 -0400 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2006-08-15 04:46:51 -0400 |
commit | c9900f159e8d2fd7e32070e2cd0971caf917431d (patch) | |
tree | 80b479ecb6cec5dcbb15b699904b18e77815cb5b /src/cpu | |
parent | 336beeaf43d91c8a3d33d15b0a7e189dd7826110 (diff) | |
download | gem5-c9900f159e8d2fd7e32070e2cd0971caf917431d.tar.xz |
Fixed ALPHA_FS by moving the remnants of isa_fullsys_traits.hh into arch/alpha/pagetable.hh and fixing up some includes
--HG--
extra : convert_revision : 02a47fa62b17245763314890beb68339c789d18f
Diffstat (limited to 'src/cpu')
-rw-r--r-- | src/cpu/simple/base.cc | 1 | ||||
-rw-r--r-- | src/cpu/static_inst.hh | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/src/cpu/simple/base.cc b/src/cpu/simple/base.cc index 622455745..801c96c88 100644 --- a/src/cpu/simple/base.cc +++ b/src/cpu/simple/base.cc @@ -29,6 +29,7 @@ */ #include "arch/utility.hh" +#include "arch/faults.hh" #include "base/cprintf.hh" #include "base/inifile.hh" #include "base/loader/symtab.hh" diff --git a/src/cpu/static_inst.hh b/src/cpu/static_inst.hh index 4322e8092..4d8771ddd 100644 --- a/src/cpu/static_inst.hh +++ b/src/cpu/static_inst.hh @@ -35,7 +35,7 @@ #include <string> #include "arch/isa_traits.hh" -#include "arch/faults.hh" +#include "sim/faults.hh" #include "base/bitfield.hh" #include "base/hashmap.hh" #include "base/misc.hh" |