summaryrefslogtreecommitdiff
path: root/src/cpu/o3/alpha/cpu.cc
diff options
context:
space:
mode:
authorGabe Black <gblack@eecs.umich.edu>2008-10-09 00:08:50 -0700
committerGabe Black <gblack@eecs.umich.edu>2008-10-09 00:08:50 -0700
commite09c403d326488dbc709e3bddc8d497481273950 (patch)
treecf82abebfc6e793cbc9526ed7279329e3fcd9199 /src/cpu/o3/alpha/cpu.cc
parent975c9e3af869fb2905933c93c4d657e4d7187dad (diff)
downloadgem5-e09c403d326488dbc709e3bddc8d497481273950.tar.xz
O3: Generalize the O3 CPU object so it isn't split out by ISA.
Diffstat (limited to 'src/cpu/o3/alpha/cpu.cc')
-rw-r--r--src/cpu/o3/alpha/cpu.cc5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/cpu/o3/alpha/cpu.cc b/src/cpu/o3/alpha/cpu.cc
index ed10b2fd1..740e6476d 100644
--- a/src/cpu/o3/alpha/cpu.cc
+++ b/src/cpu/o3/alpha/cpu.cc
@@ -29,10 +29,9 @@
*/
#include "cpu/o3/alpha/impl.hh"
-#include "cpu/o3/alpha/cpu_impl.hh"
-#include "cpu/o3/alpha/dyn_inst.hh"
+#include "cpu/o3/cpu.hh"
// Force instantiation of AlphaO3CPU for all the implemntations that are
// needed. Consider merging this and alpha_dyn_inst.cc, and maybe all
// classes that depend on a certain impl, into one file (alpha_impl.cc?).
-template class AlphaO3CPU<AlphaSimpleImpl>;
+template class FullO3CPU<AlphaSimpleImpl>;