diff options
author | Nathan Binkert <nate@binkert.org> | 2008-10-10 12:17:53 -0700 |
---|---|---|
committer | Nathan Binkert <nate@binkert.org> | 2008-10-10 12:17:53 -0700 |
commit | 96936c6bf57b40c6da2582ad6dd1bdd0de2ea3db (patch) | |
tree | abbaeea049a03246d5016fce20eadacccbf1e02b /src/sim | |
parent | 8ac63c48a4305cecb75215eb6070d1b356311901 (diff) | |
download | gem5-96936c6bf57b40c6da2582ad6dd1bdd0de2ea3db.tar.xz |
Rename the info function to inform to avoid likely name conflicts
Diffstat (limited to 'src/sim')
-rw-r--r-- | src/sim/simulate.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sim/simulate.cc b/src/sim/simulate.cc index 7f40805e6..9af873f90 100644 --- a/src/sim/simulate.cc +++ b/src/sim/simulate.cc @@ -47,7 +47,7 @@ SimLoopExitEvent * simulate(Tick num_cycles) { - info("Entering event queue @ %d. Starting simulation...\n", curTick); + inform("Entering event queue @ %d. Starting simulation...\n", curTick); if (num_cycles < 0) fatal("simulate: num_cycles must be >= 0 (was %d)\n", num_cycles); |