summaryrefslogtreecommitdiff
path: root/sim/universe.cc
diff options
context:
space:
mode:
authorSteve Reinhardt <stever@eecs.umich.edu>2004-10-25 00:56:47 -0400
committerSteve Reinhardt <stever@eecs.umich.edu>2004-10-25 00:56:47 -0400
commite852f9e31a8157f109058e6f3fdb4e86cc0cb10c (patch)
treefff5b2806698b621455afc3f1c639c402008987d /sim/universe.cc
parent400daa7e41057ec358691afeffe35ffa430d11b0 (diff)
downloadgem5-e852f9e31a8157f109058e6f3fdb4e86cc0cb10c.tar.xz
Add explicit phases to order ParamContext initializations.
--HG-- extra : convert_revision : c24fba2bded2493a892fa93de0c61f9674cfedbb
Diffstat (limited to 'sim/universe.cc')
-rw-r--r--sim/universe.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/sim/universe.cc b/sim/universe.cc
index ffff52104..824b985fa 100644
--- a/sim/universe.cc
+++ b/sim/universe.cc
@@ -56,7 +56,8 @@ ostream *configStream;
class UniverseParamContext : public ParamContext
{
public:
- UniverseParamContext(const string &is) : ParamContext(is) {}
+ UniverseParamContext(const string &is)
+ : ParamContext(is, OutputInitPhase) {}
void checkParams();
};