diff options
author | Kevin Lim <ktlim@umich.edu> | 2006-06-16 17:52:15 -0400 |
---|---|---|
committer | Kevin Lim <ktlim@umich.edu> | 2006-06-16 17:52:15 -0400 |
commit | 0bbd909f02e72a321a65b933104c5ef1e157116b (patch) | |
tree | ea8b6858221450cd726f9651d590ea9862d3e426 /src/cpu/o3 | |
parent | def9ea38b561676a89959882f92d3520a2e0224f (diff) | |
download | gem5-0bbd909f02e72a321a65b933104c5ef1e157116b.tar.xz |
Reorganization to move FuncUnit, FUDesc, and OpDesc out of the encumbered directory and into the normal cpu directory.
src/SConscript:
Split off FuncUnits from old FUPool so I'm not including encumbered code. This was all written by Steve Raasch so it's safe to include in the main tree.
src/cpu/o3/fu_pool.cc:
Include the func unit file that's not in the encumbered directory.
--HG--
extra : convert_revision : 9801c606961dd2d62dba190d13a76069992bf241
Diffstat (limited to 'src/cpu/o3')
-rw-r--r-- | src/cpu/o3/fu_pool.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cpu/o3/fu_pool.cc b/src/cpu/o3/fu_pool.cc index 545deea9b..42e329aca 100644 --- a/src/cpu/o3/fu_pool.cc +++ b/src/cpu/o3/fu_pool.cc @@ -31,7 +31,7 @@ #include <sstream> #include "cpu/o3/fu_pool.hh" -#include "encumbered/cpu/full/fu_pool.hh" +#include "cpu/func_unit.hh" #include "sim/builder.hh" using namespace std; |