diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2012-02-07 04:43:21 -0800 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2012-02-07 04:43:21 -0800 |
commit | f2b46fdb850dca0e2ac3a97343292a7d92ff980e (patch) | |
tree | 17be8a7223e4cef370e41934aeeaef9719ec7a9d /src/cpu/ozone/lsq_unit.hh | |
parent | 214d7af2fe0e8a8c9eec4c07343d32d4fb5f84b2 (diff) | |
download | gem5-f2b46fdb850dca0e2ac3a97343292a7d92ff980e.tar.xz |
Faults: Turn off arch/faults.hh
Because there are no longer architecture independent but specialized functions
in arch/XXX/faults.hh, code that isn't using the faults from a particular ISA
no longer needs to be able to include them through the switching header file
arch/faults.hh. By removing that header file (arch/faults.hh), the potential
interface between ISA code and non ISA code is narrowed.
Diffstat (limited to 'src/cpu/ozone/lsq_unit.hh')
-rw-r--r-- | src/cpu/ozone/lsq_unit.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cpu/ozone/lsq_unit.hh b/src/cpu/ozone/lsq_unit.hh index c812a10a2..8a8e2ccd5 100644 --- a/src/cpu/ozone/lsq_unit.hh +++ b/src/cpu/ozone/lsq_unit.hh @@ -35,13 +35,13 @@ #include <map> #include <queue> -#include "arch/faults.hh" #include "arch/types.hh" #include "base/hashmap.hh" #include "config/the_isa.hh" #include "cpu/inst_seq.hh" #include "mem/mem_interface.hh" //#include "mem/page_table.hh" +#include "sim/fault_fwd.hh" #include "sim/sim_object.hh" class PageTable; |