diff options
author | Steve Reinhardt <stever@eecs.umich.edu> | 2003-10-21 21:32:15 -0700 |
---|---|---|
committer | Steve Reinhardt <stever@eecs.umich.edu> | 2003-10-21 21:32:15 -0700 |
commit | de29fec658f6107c20a00c9c30111b253afafeac (patch) | |
tree | d67713dec5fa7946ca17f58c439bb8e050d452fe /cpu | |
parent | 5159241db723c91a05dadb2827c2e63f7b124d56 (diff) | |
download | gem5-de29fec658f6107c20a00c9c30111b253afafeac.tar.xz |
Don't need to include sim/param.hh in sim_object.hh anymore.
Add explicit include of sim/param.hh to .cc files as needed.
cpu/base_cpu.cc:
cpu/exetrace.cc:
dev/etherint.cc:
sim/system.cc:
Add include of sim/param.hh.
sim/sim_object.hh:
Don't need to include sim/param.hh.
--HG--
extra : convert_revision : 8ed13f25c2087680230056ab7abb623e6a7699cf
Diffstat (limited to 'cpu')
-rw-r--r-- | cpu/base_cpu.cc | 1 | ||||
-rw-r--r-- | cpu/exetrace.cc | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/cpu/base_cpu.cc b/cpu/base_cpu.cc index 2e1d95d88..90e090d5e 100644 --- a/cpu/base_cpu.cc +++ b/cpu/base_cpu.cc @@ -34,6 +34,7 @@ #include "base/cprintf.hh" #include "cpu/exec_context.hh" #include "base/misc.hh" +#include "sim/param.hh" #include "sim/sim_events.hh" using namespace std; diff --git a/cpu/exetrace.cc b/cpu/exetrace.cc index 01f50e675..c350288bc 100644 --- a/cpu/exetrace.cc +++ b/cpu/exetrace.cc @@ -29,6 +29,7 @@ #include <fstream> #include <iomanip> +#include "sim/param.hh" #include "cpu/full_cpu/dyn_inst.hh" #include "cpu/full_cpu/spec_state.hh" #include "cpu/full_cpu/issue.hh" |