diff options
author | Kevin Lim <ktlim@umich.edu> | 2005-02-11 17:54:33 -0500 |
---|---|---|
committer | Kevin Lim <ktlim@umich.edu> | 2005-02-11 17:54:33 -0500 |
commit | c4d0ebd25cc5f0657b99543ff2df30d1a86f3ad5 (patch) | |
tree | f8eb75062055458ed2b2f44e4e87d2089c2debf4 /cpu/beta_cpu/commit.cc | |
parent | 1e7a744c09d0bde70e0f83179fdf4d6059585e4b (diff) | |
download | gem5-c4d0ebd25cc5f0657b99543ff2df30d1a86f3ad5.tar.xz |
Fix up #defines to use full path; fix up code for g++ 3.4
SConscript:
Remove efence option from automatically being used.
--HG--
extra : convert_revision : 466bb8077aa341db0b409720e2a73535b1fa6b69
Diffstat (limited to 'cpu/beta_cpu/commit.cc')
-rw-r--r-- | cpu/beta_cpu/commit.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpu/beta_cpu/commit.cc b/cpu/beta_cpu/commit.cc index 2efb38976..9e8fa2781 100644 --- a/cpu/beta_cpu/commit.cc +++ b/cpu/beta_cpu/commit.cc @@ -1,6 +1,6 @@ #include "cpu/beta_cpu/alpha_dyn_inst.hh" -#include "cpu/beta_cpu/commit_impl.hh" #include "cpu/beta_cpu/alpha_impl.hh" +#include "cpu/beta_cpu/commit_impl.hh" -template SimpleCommit<AlphaSimpleImpl>; +template class SimpleCommit<AlphaSimpleImpl>; |