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/mips/cpu.cc | |
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/mips/cpu.cc')
-rwxr-xr-x | src/cpu/o3/mips/cpu.cc | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/cpu/o3/mips/cpu.cc b/src/cpu/o3/mips/cpu.cc index 420f460b2..bb78de0a6 100755 --- a/src/cpu/o3/mips/cpu.cc +++ b/src/cpu/o3/mips/cpu.cc @@ -29,11 +29,10 @@ * Korey Sewell */ +#include "cpu/o3/cpu.hh" #include "cpu/o3/mips/impl.hh" -#include "cpu/o3/mips/cpu_impl.hh" -#include "cpu/o3/mips/dyn_inst.hh" // Force instantiation of MipsO3CPU for all the implemntations that are // needed. Consider merging this and mips_dyn_inst.cc, and maybe all // classes that depend on a certain impl, into one file (mips_impl.cc?). -template class MipsO3CPU<MipsSimpleImpl>; +template class FullO3CPU<MipsSimpleImpl>; |