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
This commit is contained in:
Steve Reinhardt 2003-10-21 21:32:15 -07:00
parent 5159241db7
commit de29fec658
5 changed files with 4 additions and 1 deletions

View file

@ -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;

View file

@ -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"

View file

@ -28,6 +28,7 @@
#include "dev/etherint.hh"
#include "base/misc.hh"
#include "sim/param.hh"
#include "sim/sim_object.hh"
void

View file

@ -38,7 +38,6 @@
#include <vector>
#include <iostream>
#include "sim/param.hh"
#include "sim/serialize.hh"
/*

View file

@ -28,6 +28,7 @@
#include "cpu/exec_context.hh"
#include "targetarch/vtophys.hh"
#include "sim/param.hh"
#include "sim/system.hh"
using namespace std;