diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2008-10-09 00:08:50 -0700 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2008-10-09 00:08:50 -0700 |
commit | e09c403d326488dbc709e3bddc8d497481273950 (patch) | |
tree | cf82abebfc6e793cbc9526ed7279329e3fcd9199 /src/cpu/o3/isa_specific.hh | |
parent | 975c9e3af869fb2905933c93c4d657e4d7187dad (diff) | |
download | gem5-e09c403d326488dbc709e3bddc8d497481273950.tar.xz |
O3: Generalize the O3 CPU object so it isn't split out by ISA.
Diffstat (limited to 'src/cpu/o3/isa_specific.hh')
-rwxr-xr-x | src/cpu/o3/isa_specific.hh | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/cpu/o3/isa_specific.hh b/src/cpu/o3/isa_specific.hh index 9e74f4c8c..5e759b41d 100755 --- a/src/cpu/o3/isa_specific.hh +++ b/src/cpu/o3/isa_specific.hh @@ -31,15 +31,12 @@ #include "cpu/base.hh" #if THE_ISA == ALPHA_ISA - #include "cpu/o3/alpha/cpu.hh" #include "cpu/o3/alpha/impl.hh" #include "cpu/o3/alpha/dyn_inst.hh" #elif THE_ISA == MIPS_ISA - #include "cpu/o3/mips/cpu.hh" #include "cpu/o3/mips/impl.hh" #include "cpu/o3/mips/dyn_inst.hh" #elif THE_ISA == SPARC_ISA - #include "cpu/o3/sparc/cpu.hh" #include "cpu/o3/sparc/impl.hh" #include "cpu/o3/sparc/dyn_inst.hh" #else |