diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2006-02-27 01:32:49 -0500 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2006-02-27 01:32:49 -0500 |
commit | 4b256577e01111e676f021c67478afec2289e175 (patch) | |
tree | 0b36c76c7221bc95032a398a150003e0d2366640 /sim/process.cc | |
parent | 570535461691aa5ca36220b085b70a7c31454078 (diff) | |
download | gem5-4b256577e01111e676f021c67478afec2289e175.tar.xz |
Where architecture independent sources included arch/alpha/xxx.hh, they were changed to include targetarch/xxx.hh
cpu/base_dyn_inst.cc:
cpu/o3/bpred_unit.hh:
cpu/o3/comm.hh:
cpu/o3/cpu.hh:
cpu/o3/regfile.hh:
cpu/ozone/cpu_impl.hh:
cpu/ozone/ea_list.cc:
cpu/ozone/ea_list.hh:
kern/kernel_stats.cc:
Changed arch/alpha to targetarch
sim/process.cc:
Changed arch/alpha to targetarch, and removed gaurding ifdef
--HG--
extra : convert_revision : 3c29e6baeb1cd900f7b5e11144a5d547a6c7c5ab
Diffstat (limited to 'sim/process.cc')
-rw-r--r-- | sim/process.cc | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/sim/process.cc b/sim/process.cc index 0a7e46082..171470eb2 100644 --- a/sim/process.cc +++ b/sim/process.cc @@ -48,10 +48,8 @@ #include "sim/stats.hh" #include "sim/syscall_emul.hh" -#ifdef TARGET_ALPHA -#include "arch/alpha/alpha_tru64_process.hh" -#include "arch/alpha/alpha_linux_process.hh" -#endif +#include "targetarch/alpha_tru64_process.hh" +#include "targetarch/alpha_linux_process.hh" using namespace std; using namespace TheISA; |